v2ray_simple icon indicating copy to clipboard operation
v2ray_simple copied to clipboard

[Bug] too many open streams

Open Aruelius opened this issue 1 year ago • 4 comments

Describe the bug【描述 bug】 quic 协议客户端开久了,就会报这个错误 Failed in DialSubConn {"connid": 201328, "error": "too many open streams"},此时部分刚建立连接的网站会打不开,Chrome 提示 ERR_CONNECTION_CLOSED 1OZTUXALS8FI31%JA1NQ(HA

但是服务端没有报错

Envs (please complete the following information):【系统环境】

Windows 10

Config file 【配置文件,客户端服务端配置都提供】

server

[[listen]]
tag = "my_vlesss1"
protocol = "vlesss"
users = [ {user = ""} ]
host = "0.0.0.0"
port = 4433
fallback = ":80"
cert = ""   # 这里既可以默认放在程序本身目录下,也可以指定完整路径
key = ""
extra.tls_minVersion = "1.2"   # 默认的 minVersion 是1.3,你还可以设成1.2,其它值无效。
extra.tls_maxVersion = "1.2"
extra.tls_cipherSuites = [ "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256", "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256"]

[[dial]]
protocol = "direct"
[[fallback]]
dest = 6060
[[fallback]]
dest = 80
path = "/asf"

client

[[listen]]
protocol = "socks5http"
host = "127.0.0.1"
port = 10800

[[dial]]
protocol = "vlesss"
uuid = ""
host = ""
port = 4433
adv = "quic"
early = true

Aruelius avatar Mar 27 '23 01:03 Aruelius

设置一下udp_timeout 另外你这配置有点抽象,QUIC没法TLS1.2

SakuraSakuraSakuraChan avatar Apr 01 '23 18:04 SakuraSakuraSakuraChan

你的server的配置也没写 adv啊,是不是贴错配置了

e1732a364fed avatar Apr 05 '23 00:04 e1732a364fed

抱歉,确实贴错了。。

server

[[listen]]
protocol = "vlesss"
uuid = ""
host = "0.0.0.0"
port = 4433
cert = ""
key = ""
adv = "quic"
early = true

[[dial]]
protocol = "direct"

Aruelius avatar Apr 05 '23 05:04 Aruelius

我有同样的问题,无论内核参数怎么改。跑一段时间以后,都报这个错。 另外 udp_timeout 在哪里设?

jefison avatar May 23 '23 22:05 jefison