github.com/sagernet/sing-box@v1.9.0-rc.20/docs/configuration/inbound/vmess.zh.md (about) 1 ### 结构 2 3 ```json 4 { 5 "type": "vmess", 6 "tag": "vmess-in", 7 8 ... // 监听字段 9 10 "users": [ 11 { 12 "name": "sekai", 13 "uuid": "bf000d23-0752-40b4-affe-68f7707a9661", 14 "alterId": 0 15 } 16 ], 17 "tls": {}, 18 "multiplex": {}, 19 "transport": {} 20 } 21 ``` 22 23 ### 监听字段 24 25 参阅 [监听字段](/zh/configuration/shared/listen/)。 26 27 ### 字段 28 29 #### users 30 31 ==必填== 32 33 VMess 用户。 34 35 | Alter ID | 描述 | 36 |----------|-------| 37 | 0 | 禁用旧协议 | 38 | > 0 | 启用旧协议 | 39 40 !!! warning "" 41 42 提供旧协议支持(VMess MD5 身份验证)仅出于兼容性目的,不建议使用 alterId > 1。 43 44 #### tls 45 46 TLS 配置, 参阅 [TLS](/zh/configuration/shared/tls/#inbound)。 47 48 #### multiplex 49 50 参阅 [多路复用](/zh/configuration/shared/multiplex#inbound)。 51 52 #### transport 53 54 V2Ray 传输配置,参阅 [V2Ray 传输层](/zh/configuration/shared/v2ray-transport/)。