We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我有一个shadowsocks 服务器节点,在sing-box 的正确配置是这样:
{ "type": "shadowsocks", "tag": "韩国 01", "server": "myproxy.com", "server_port": 12340, "method": "aes-128-gcm", "password": "Vvvvvxxxxxx", "tcp_fast_open": false, "plugin": "obfs-local", "plugin_opts": "obfs=tls;obfs-host=alibaba.com" }
我只查找到 gost v3 上相关配置的这个文档,内容很少(此文档是配置server节点,而我应该是需要在chains 中配置):https://v3.gost.run/reference/listeners/otls/ ,它没有说明如何对应设置 obfs-host 字段?
另外,我查询到 gost v2 似乎是支持obfs 配置的:https://v2.gost.run/simple-obfs/
所以我想求助: 对于上面使用sing-box 配置展示的、带有obfs tls 选项的 shadowsocks 服务器节点,我如何配置gost v3 来与之连接?
The text was updated successfully, but these errors were encountered:
V3中的使用方式与V2中相同,可以试试:
gost -L=:8080 -F=ss+otls://aes-128-gcm:123456@server_ip:12340?host=alibaba.com
Sorry, something went wrong.
设置了 host ,测试不行:
chains: - name: chain-0 hops: - name: hop-0 nodes: - name: node-0 addr: myproxy.com:12340 connector: type: ss auth: username: aes-128-gcm password: "Vvvvvxxxxxx" dialer: #type: tcp type: otls host: alibaba.com
而一旦我将 dialer type 改为 tcp 并设置正确的无obfs选项的 shadowsocks 对端,则可以正确代理。
host设置错误,要放在metadata中
dialer: type: otls metadata: host: alibaba.com
No branches or pull requests
我有一个shadowsocks 服务器节点,在sing-box 的正确配置是这样:
我只查找到 gost v3 上相关配置的这个文档,内容很少(此文档是配置server节点,而我应该是需要在chains 中配置):https://v3.gost.run/reference/listeners/otls/ ,它没有说明如何对应设置 obfs-host 字段?
另外,我查询到 gost v2 似乎是支持obfs 配置的:https://v2.gost.run/simple-obfs/
所以我想求助:
对于上面使用sing-box 配置展示的、带有obfs tls 选项的 shadowsocks 服务器节点,我如何配置gost v3 来与之连接?
The text was updated successfully, but these errors were encountered: