2023-11-08 04:09:22 +00:00
|
|
|
### 入站
|
2022-08-24 09:31:32 +00:00
|
|
|
|
2023-11-08 04:09:22 +00:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"enabled": true,
|
|
|
|
"padding": false,
|
|
|
|
"brutal": {}
|
|
|
|
}
|
|
|
|
```
|
2022-08-24 09:31:32 +00:00
|
|
|
|
2023-11-08 04:09:22 +00:00
|
|
|
### 出站
|
2022-08-24 09:31:32 +00:00
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"enabled": true,
|
|
|
|
"protocol": "smux",
|
|
|
|
"max_connections": 4,
|
|
|
|
"min_streams": 4,
|
2023-11-08 04:09:22 +00:00
|
|
|
"max_streams": 0,
|
|
|
|
"padding": false,
|
|
|
|
"brutal": {}
|
2022-08-24 09:31:32 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2023-11-08 04:09:22 +00:00
|
|
|
### 入站字段
|
|
|
|
|
|
|
|
#### enabled
|
|
|
|
|
|
|
|
启用多路复用支持。
|
|
|
|
|
|
|
|
#### padding
|
|
|
|
|
|
|
|
如果启用,将拒绝非填充连接。
|
|
|
|
|
|
|
|
#### brutal
|
|
|
|
|
2023-12-14 14:23:52 +00:00
|
|
|
参阅 [TCP Brutal](/zh/configuration/shared/tcp-brutal/)。
|
2023-11-08 04:09:22 +00:00
|
|
|
|
|
|
|
### 出站字段
|
2022-08-24 09:31:32 +00:00
|
|
|
|
|
|
|
#### enabled
|
|
|
|
|
2022-08-25 01:45:22 +00:00
|
|
|
启用多路复用。
|
2022-08-24 09:31:32 +00:00
|
|
|
|
|
|
|
#### protocol
|
|
|
|
|
|
|
|
多路复用协议
|
|
|
|
|
|
|
|
| 协议 | 描述 |
|
|
|
|
|-------|------------------------------------|
|
|
|
|
| smux | https://github.com/xtaci/smux |
|
|
|
|
| yamux | https://github.com/hashicorp/yamux |
|
2023-04-20 03:16:22 +00:00
|
|
|
| h2mux | https://golang.org/x/net/http2 |
|
2022-08-24 09:31:32 +00:00
|
|
|
|
2023-04-20 03:16:22 +00:00
|
|
|
默认使用 h2mux。
|
2022-08-24 09:31:32 +00:00
|
|
|
|
|
|
|
#### max_connections
|
|
|
|
|
2022-08-25 01:45:22 +00:00
|
|
|
最大连接数量。
|
2022-08-24 09:31:32 +00:00
|
|
|
|
2022-08-25 01:45:22 +00:00
|
|
|
与 `max_streams` 冲突。
|
2022-08-24 09:31:32 +00:00
|
|
|
|
|
|
|
#### min_streams
|
|
|
|
|
2022-08-25 01:45:22 +00:00
|
|
|
在打开新连接之前,连接中的最小多路复用流数量。
|
2022-08-24 09:31:32 +00:00
|
|
|
|
2022-08-25 01:45:22 +00:00
|
|
|
与 `max_streams` 冲突。
|
2022-08-24 09:31:32 +00:00
|
|
|
|
|
|
|
#### max_streams
|
|
|
|
|
2022-08-25 01:45:22 +00:00
|
|
|
在打开新连接之前,连接中的最大多路复用流数量。
|
2022-08-24 09:31:32 +00:00
|
|
|
|
2023-04-20 03:16:22 +00:00
|
|
|
与 `max_connections` 和 `min_streams` 冲突。
|
|
|
|
|
|
|
|
#### padding
|
|
|
|
|
|
|
|
!!! info
|
|
|
|
|
|
|
|
需要 sing-box 服务器版本 1.3-beta9 或更高。
|
|
|
|
|
|
|
|
启用填充。
|
|
|
|
|
2023-11-08 04:09:22 +00:00
|
|
|
#### brutal
|
|
|
|
|
2023-12-14 14:23:52 +00:00
|
|
|
参阅 [TCP Brutal](/zh/configuration/shared/tcp-brutal/)。
|