mirror of
https://github.com/bolucat/Archive.git
synced 2026-04-23 00:17:16 +08:00
118 lines
1.9 KiB
Markdown
118 lines
1.9 KiB
Markdown
### 结构
|
||
|
||
```json
|
||
{
|
||
"type": "hysteria",
|
||
"tag": "hysteria-in",
|
||
|
||
... // 监听字段
|
||
|
||
"up": "100 Mbps",
|
||
"up_mbps": 100,
|
||
"down": "100 Mbps",
|
||
"down_mbps": 100,
|
||
"obfs": "fuck me till the daylight",
|
||
|
||
"users": [
|
||
{
|
||
"name": "sekai",
|
||
"auth": "",
|
||
"auth_str": "password"
|
||
}
|
||
],
|
||
|
||
"tls": {},
|
||
|
||
... // QUIC 字段
|
||
|
||
// 废弃的
|
||
|
||
"recv_window_conn": 0,
|
||
"recv_window_client": 0,
|
||
"max_conn_client": 0,
|
||
"disable_mtu_discovery": false
|
||
}
|
||
```
|
||
|
||
### 监听字段
|
||
|
||
参阅 [监听字段](/zh/configuration/shared/listen/)。
|
||
|
||
### 字段
|
||
|
||
#### up, down
|
||
|
||
==必填==
|
||
|
||
格式: `[Integer] [Unit]` 例如: `100 Mbps, 640 KBps, 2 Gbps`
|
||
|
||
支持的单位 (大小写敏感, b = bits, B = bytes, 8b=1B):
|
||
|
||
bps (bits per second)
|
||
Bps (bytes per second)
|
||
Kbps (kilobits per second)
|
||
KBps (kilobytes per second)
|
||
Mbps (megabits per second)
|
||
MBps (megabytes per second)
|
||
Gbps (gigabits per second)
|
||
GBps (gigabytes per second)
|
||
Tbps (terabits per second)
|
||
TBps (terabytes per second)
|
||
|
||
#### up_mbps, down_mbps
|
||
|
||
==必填==
|
||
|
||
以 Mbps 为单位的 `up, down`。
|
||
|
||
#### obfs
|
||
|
||
混淆密码。
|
||
|
||
#### users
|
||
|
||
Hysteria 用户
|
||
|
||
#### users.auth
|
||
|
||
base64 编码的认证密码。
|
||
|
||
#### users.auth_str
|
||
|
||
认证密码。
|
||
|
||
#### tls
|
||
|
||
==必填==
|
||
|
||
TLS 配置, 参阅 [TLS](/zh/configuration/shared/tls/#入站)。
|
||
|
||
### QUIC 字段
|
||
|
||
参阅 [QUIC 字段](/zh/configuration/shared/quic/) 了解详情。
|
||
|
||
### 废弃字段
|
||
|
||
#### recv_window_conn
|
||
|
||
!!! failure "已在 sing-box 1.14.0 废弃"
|
||
|
||
请使用 QUIC 字段 `stream_receive_window` 代替。
|
||
|
||
#### recv_window_client
|
||
|
||
!!! failure "已在 sing-box 1.14.0 废弃"
|
||
|
||
请使用 QUIC 字段 `connection_receive_window` 代替。
|
||
|
||
#### max_conn_client
|
||
|
||
!!! failure "已在 sing-box 1.14.0 废弃"
|
||
|
||
请使用 QUIC 字段 `max_concurrent_streams` 代替。
|
||
|
||
#### disable_mtu_discovery
|
||
|
||
!!! failure "已在 sing-box 1.14.0 废弃"
|
||
|
||
请使用 QUIC 字段 `disable_path_mtu_discovery` 代替。 |