github.com/sagernet/sing-box@v1.9.0-rc.20/docs/configuration/inbound/tuic.zh.md (about) 1 ### 结构 2 3 ```json 4 { 5 "type": "tuic", 6 "tag": "tuic-in", 7 8 ... // 监听字段 9 10 "users": [ 11 { 12 "name": "sekai", 13 "uuid": "059032A9-7D40-4A96-9BB1-36823D848068", 14 "password": "hello" 15 } 16 ], 17 "congestion_control": "cubic", 18 "auth_timeout": "3s", 19 "zero_rtt_handshake": false, 20 "heartbeat": "10s", 21 "tls": {} 22 } 23 ``` 24 25 ### 监听字段 26 27 参阅 [监听字段](/zh/configuration/shared/listen/)。 28 29 ### 字段 30 31 #### users 32 33 TUIC 用户 34 35 #### users.uuid 36 37 ==必填== 38 39 TUIC 用户 UUID 40 41 #### users.password 42 43 TUIC 用户密码 44 45 #### congestion_control 46 47 QUIC 拥塞控制算法 48 49 可选值: `cubic`, `new_reno`, `bbr` 50 51 默认使用 `cubic`。 52 53 #### auth_timeout 54 55 服务器等待客户端发送认证命令的时间 56 57 默认使用 `3s`。 58 59 #### zero_rtt_handshake 60 61 在客户端启用 0-RTT QUIC 连接握手 62 这对性能影响不大,因为协议是完全复用的 63 64 !!! warning "" 65 强烈建议禁用此功能,因为它容易受到重放攻击。 66 请参阅 [Attack of the clones](https://blog.cloudflare.com/even-faster-connection-establishment-with-quic-0-rtt-resumption/#attack-of-the-clones) 67 68 #### heartbeat 69 70 发送心跳包以保持连接存活的时间间隔 71 72 默认使用 `10s`。 73 74 #### tls 75 76 ==必填== 77 78 TLS 配置, 参阅 [TLS](/zh/configuration/shared/tls/#inbound)。