github.com/sagernet/sing-box@v1.9.0-rc.20/docs/configuration/outbound/vless.zh.md (about) 1 ### 结构 2 3 ```json 4 { 5 "type": "vless", 6 "tag": "vless-out", 7 8 "server": "127.0.0.1", 9 "server_port": 1080, 10 "uuid": "bf000d23-0752-40b4-affe-68f7707a9661", 11 "flow": "xtls-rprx-vision", 12 "network": "tcp", 13 "tls": {}, 14 "packet_encoding": "", 15 "multiplex": {}, 16 "transport": {}, 17 18 ... // 拨号字段 19 } 20 ``` 21 22 ### 字段 23 24 #### server 25 26 ==必填== 27 28 服务器地址。 29 30 #### server_port 31 32 ==必填== 33 34 服务器端口。 35 36 #### uuid 37 38 ==必填== 39 40 VLESS 用户 ID。 41 42 #### flow 43 44 VLESS 子协议。 45 46 可用值: 47 48 * `xtls-rprx-vision` 49 50 #### network 51 52 启用的网络协议。 53 54 `tcp` 或 `udp`。 55 56 默认所有。 57 58 #### tls 59 60 TLS 配置, 参阅 [TLS](/zh/configuration/shared/tls/#outbound)。 61 62 #### packet_encoding 63 64 UDP 包编码,默认使用 xudp。 65 66 | 编码 | 描述 | 67 |------------|---------------| 68 | (空) | 禁用 | 69 | packetaddr | 由 v2ray 5+ 支持 | 70 | xudp | 由 xray 支持 | 71 72 #### multiplex 73 74 参阅 [多路复用](/zh/configuration/shared/multiplex#outbound)。 75 76 #### transport 77 78 V2Ray 传输配置,参阅 [V2Ray 传输层](/zh/configuration/shared/v2ray-transport/)。 79 80 ### 拨号字段 81 82 参阅 [拨号字段](/zh/configuration/shared/dial/)。