github.com/inazumav/sing-box@v0.0.0-20230926072359-ab51429a14f1/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 "transport": {}, 16 17 ... // 拨号字段 18 } 19 ``` 20 21 ### 字段 22 23 #### server 24 25 ==必填== 26 27 服务器地址。 28 29 #### server_port 30 31 ==必填== 32 33 服务器端口。 34 35 #### uuid 36 37 ==必填== 38 39 VLESS 用户 ID。 40 41 #### flow 42 43 VLESS 子协议。 44 45 可用值: 46 47 * `xtls-rprx-vision` 48 49 #### network 50 51 启用的网络协议。 52 53 `tcp` 或 `udp`。 54 55 默认所有。 56 57 #### tls 58 59 TLS 配置, 参阅 [TLS](/zh/configuration/shared/tls/#outbound)。 60 61 #### packet_encoding 62 63 UDP 包编码,默认使用 xudp。 64 65 | 编码 | 描述 | 66 |------------|---------------| 67 | (空) | 禁用 | 68 | packetaddr | 由 v2ray 5+ 支持 | 69 | xudp | 由 xray 支持 | 70 71 #### transport 72 73 V2Ray 传输配置,参阅 [V2Ray 传输层](/zh/configuration/shared/v2ray-transport)。 74 75 ### 拨号字段 76 77 参阅 [拨号字段](/zh/configuration/shared/dial/)。