github.com/sagernet/sing-box@v1.9.0-rc.20/docs/configuration/inbound/hysteria.zh.md (about) 1 ### 结构 2 3 ```json 4 { 5 "type": "hysteria", 6 "tag": "hysteria-in", 7 8 ... // 监听字段 9 10 "up": "100 Mbps", 11 "up_mbps": 100, 12 "down": "100 Mbps", 13 "down_mbps": 100, 14 "obfs": "fuck me till the daylight", 15 16 "users": [ 17 { 18 "name": "sekai", 19 "auth": "", 20 "auth_str": "password" 21 } 22 ], 23 24 "recv_window_conn": 0, 25 "recv_window_client": 0, 26 "max_conn_client": 0, 27 "disable_mtu_discovery": false, 28 "tls": {} 29 } 30 ``` 31 32 ### 监听字段 33 34 参阅 [监听字段](/zh/configuration/shared/listen/)。 35 36 ### 字段 37 38 #### up, down 39 40 ==必填== 41 42 格式: `[Integer] [Unit]` 例如: `100 Mbps, 640 KBps, 2 Gbps` 43 44 支持的单位 (大小写敏感, b = bits, B = bytes, 8b=1B): 45 46 bps (bits per second) 47 Bps (bytes per second) 48 Kbps (kilobits per second) 49 KBps (kilobytes per second) 50 Mbps (megabits per second) 51 MBps (megabytes per second) 52 Gbps (gigabits per second) 53 GBps (gigabytes per second) 54 Tbps (terabits per second) 55 TBps (terabytes per second) 56 57 #### up_mbps, down_mbps 58 59 ==必填== 60 61 以 Mbps 为单位的 `up, down`。 62 63 #### obfs 64 65 混淆密码。 66 67 #### users 68 69 Hysteria 用户 70 71 #### users.auth 72 73 base64 编码的认证密码。 74 75 #### users.auth_str 76 77 认证密码。 78 79 #### recv_window_conn 80 81 用于接收数据的 QUIC 流级流控制窗口。 82 83 默认 `15728640 (15 MB/s)`。 84 85 #### recv_window_client 86 87 用于接收数据的 QUIC 连接级流控制窗口。 88 89 默认 `67108864 (64 MB/s)`。 90 91 #### max_conn_client 92 93 允许对等点打开的 QUIC 并发双向流的最大数量。 94 95 默认 `1024`。 96 97 #### disable_mtu_discovery 98 99 禁用路径 MTU 发现 (RFC 8899)。 数据包的大小最多为 1252 (IPv4) / 1232 (IPv6) 字节。 100 101 强制为 Linux 和 Windows 以外的系统启用(根据上游)。 102 103 #### tls 104 105 ==必填== 106 107 TLS 配置, 参阅 [TLS](/zh/configuration/shared/tls/#inbound)。