mirror of
https://github.com/daeuniverse/dae.git
synced 2025-01-05 13:08:57 +07:00
docs: add other-proxy-protocol.md
This commit is contained in:
parent
a7a90bca26
commit
c7664f2dc4
47
docs/getting-started/other-proxy-protocol_zh.md
Normal file
47
docs/getting-started/other-proxy-protocol_zh.md
Normal file
@ -0,0 +1,47 @@
|
||||
#其他代理协议
|
||||
|
||||
dae 目前支持的代理协议有:
|
||||
|
||||
- [x] HTTP(S)
|
||||
- [x] Socks
|
||||
- [x] Socks4
|
||||
- [x] Socks4a
|
||||
- [x] Socks5
|
||||
- [x] VMess(AEAD, alterID=0) / VLESS
|
||||
- [x] TCP
|
||||
- [x] WS
|
||||
- [x] TLS
|
||||
- [x] GRPC
|
||||
- [x] Shadowsocks
|
||||
- [x] AEAD Ciphers
|
||||
- [x] simple-obfs (not tested)
|
||||
- [x] Stream Ciphers
|
||||
- [ ] v2ray-plugin
|
||||
- [x] ShadowsocksR
|
||||
- [x] Trojan
|
||||
- [x] Trojan-gfw
|
||||
- [x] Trojan-go
|
||||
|
||||
有其他需求的,一种方式是通过外接其他代理程序来扩展协议支持。下面给出外接 naiveproxy 的例子。
|
||||
|
||||
尽管 dae 等代理程序支持 https 协议,但由于并不使用 chromium 网络栈,削弱了 naiveproxy 的伪装效果,因此可以选择外接 naiveproxy 程序来实现。
|
||||
|
||||
1. 启动 naiveproxy:
|
||||
|
||||
由于 naiveproxy 的 socks 实现无法被 curl 和 dae 使用,这里建议使用 naiveproxy 开启一个 http 监听端口。
|
||||
|
||||
```bash
|
||||
naiveproxy --listen=http://127.0.0.1:1090 --proxy=https://yourlink
|
||||
```
|
||||
|
||||
2. 在 dae 配置的 node 一节中,新增一行:`http://127.0.0.1:1090`。
|
||||
|
||||
3. 如果你绑定了 WAN 接口,即在 `global.wan_interface` 填写了内容,确保在 routing 一节的靠上位置增加一行,以避免流量从 dae 流向 naiveproxy 之后再次流向 dae,造成回环:
|
||||
|
||||
```shell
|
||||
pname(naiveproxy) -> must_direct
|
||||
```
|
||||
|
||||
这里的 pname 的含义是进程名。你可通过 `ps -ef` 命令或者观察 dae 的日志来确定 naiveproxy 的进程名。
|
||||
|
||||
只绑定 LAN 接口的用户不需要做这一步。
|
Loading…
Reference in New Issue
Block a user