Files
v2ray_simple/examples/vless_v1.client.toml

27 lines
1.2 KiB
TOML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
[[listen]]
tag = "my_socks5"
protocol = "socks5"
host = "127.0.0.1"
port = 10800
[[dial]]
tag = "my_vlesss1"
protocol = "vlesss"
uuid = "a684455c-b14f-11ea-bf0d-42010aaa0003"
host = "127.0.0.1"
port = 4433
version = 1
insecure = true
tls_type = "utls"
extra = { vless1_udp_multi = true }
# 用 vless1_udp_multi 选项 开启vless v1的 分离信道传输udp功能. udp分离信道发送 性能会比默认的 多路复用 发送性能要高。
# 在有大量向不同 远程地址发送的 udp链接 存在时,才会体现出优势 , 比如一些 实时游戏 或者 多人视频会议。
# 分离信道 又可以叫 【多信道】,因此我们用 multi 来表示。
# use_mux = true # 只需要客户端指明 use_mux 即可开启mux, 服务端自动适配. verysimple只支持v1的 mux不支持v0的mux因为 v0的mux有很多问题vs作者是不负责解决这些历史问题的。
# 开启mux可以 更隐蔽,建议开启。
# 不过开启mux后udp_multi 功能就没用了,就是说,此时虽然能共存, 但是 udp 的分离信道法就失去了意义,因为 它自己以为是分离信道,实际上都是在 mux 里,你把 udp_multi 给骗了。