Replies: 1 comment 2 replies
-
|
its becuase of vision,does not work with mux |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have following client config outbounds:
{ "protocol": "vless", "tag": "tcp_balancer_v4@balancer_outbound:", "settings": { "vnext": [ { "address": "*IP HERE*", "port": 443, "users": [ { "email": null, "id": "*USER ID HERE*", "flow": "xtls-rprx-vision", "encryption": "none" } ] } ] }, "streamSettings": { "network": "tcp", "sockopt": { "domainStrategy": "UseIP", "dialerProxy": null, "mark": 253 }, "security": "reality", "tlsSettings": null, "realitySettings": { "show": false, "fingerprint": "random", "serverName": "*MY SNI HERE*", "publicKey": "MY PUBLIC KEY HERE", "shortId": null, "spiderX": null }, "quicSettings": null, "tcpSettings": { "header": { "type": "none", "request": null, "response": null } }, "kcpSettings": null, "wsSettings": null, "grpcSettings": null, "httpSettings": null, "splithttpSettings": null, "httpupgradeSettings": null }, "mux": { "enabled": true, "concurrency": 4 } }, { "protocol": "vless", "tag": "udp_balancer_v4@balancer_outbound:", "settings": { "vnext": [ { "address": "MY IP HERE", "port": 443, "users": [ { "email": null, "id": "MY USER ID HERE", "flow": "xtls-rprx-vision", "encryption": "none" } ] } ] }, "streamSettings": { "network": "tcp", "sockopt": { "domainStrategy": "UseIP", "dialerProxy": null, "mark": 253 }, "security": "reality", "tlsSettings": null, "realitySettings": { "show": false, "fingerprint": "random", "serverName": "MY SNI HERE", "publicKey": "MY PUBLIC KEY HERE", "shortId": null, "spiderX": null }, "quicSettings": null, "tcpSettings": { "header": { "type": "none", "request": null, "response": null } }, "kcpSettings": null, "wsSettings": null, "grpcSettings": null, "httpSettings": null, "splithttpSettings": null, "httpupgradeSettings": null }, "mux": { "enabled": true, "concurrency": 4 } }When I connect to the server and try to make any requests I get error
curl: (52) Empty reply from server.In server logs I see following errors:
Note that if I remove "mux" object everything works fine.
Why I can't use MUX? Does it work with "tcp" transport?
Beta Was this translation helpful? Give feedback.
All reactions