FinalMask
FinalMask 在核心处理完包括 TLS/REALITY 在内的传输层加密后,对流量进行最后一层伪装。
可用于 TCP、UDP 方向的多种伪装,以及 QUIC 相关参数调整。
FinalMaskObject
FinalMaskObject 对应 StreamSettingsObject 中的 finalmask 项。
{
// outbound 示例,同样可用于 inbound
"outbounds": [
{
// ...
"streamSettings": {
"finalmask": {
"tcp": [
{
"type": "",
"settings": {}
}
],
"udp": [
{
"type": "",
"settings": {}
}
],
"quicParams": {
"congestion": "force-brutal",
"debug": false,
"brutalUp": "60 mbps",
"brutalDown": 0,
"udpHop": {
"ports": "20000-50000",
"interval": "5-10"
},
"initStreamReceiveWindow": 8388608,
"maxStreamReceiveWindow": 8388608,
"initConnectionReceiveWindow": 20971520,
"maxConnectionReceiveWindow": 20971520,
"maxIdleTimeout": 30,
"keepAlivePeriod": 0,
"disablePathMTUDiscovery": false,
"maxIncomingStreams": 1024
}
}
}
}
]
}2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
tcp[n].type: header-custom | fragment | sudoku
数组第一个为最外层伪装。
用于搭配 raw | httpupgarde | websocket | grpc | xhttp 传输层。
header-custom:
fragment:
sudoku:
tcp[n].settings: header-custom | fragment | sudoku
header-custom
{
"clients": [
[
{
"delay": 0,
"rand": 0,
"randRange": "0-255",
"type": "",
"packet": []
}
]
],
"servers": [
[
{
"delay": 0,
"rand": 0,
"randRange": "0-255",
"type": "",
"packet": []
}
]
],
"errors": [
[
{
"delay": 0,
"rand": 0,
"randRange": "0-255",
"type": "",
"packet": []
}
]
]
}2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
clients[n][m].delay: 单位毫秒,为 0 则于前面的粘包发送。
clients[n][m].rand: 添加指定长度随机字节,与 packet 冲突。
clients[n][m].randRange: 随机字节范围,默认 0-255。
clients[n][m].type: packet 类型,array | str | hex | base64,默认为 array。
clients[n][m].packet: 添加固定数据,与 rand 冲突。
fragment
{
"packets": "tlshello",
"length": "100-200",
"delay": "10-20",
"maxSplit": "3-6"
}2
3
4
5
6
sudoku
{
"password": "",
"ascii": "",
"customTable": "", // 官方文档字段名为 custom_table
"customTables": [""], // 官方文档字段名为 custom_tables
"paddingMin": 0, // 官方文档字段名为 padding_min
"paddingMax": 0 // 官方文档字段名为 padding_max
}2
3
4
5
6
7
8
9
10
含义见其 官方文档 文档字段
udp[n].type: header-custom | header-dns | header-dtls | header-srtp | header-utp | header-wechat | header-wireguard | mkcp-original | mkcp-aes128gcm | noise | salamander | sudoku | xdns | xicmp
数组第一个为最外层伪装。
用于搭配 raw udp | kcp | hysteria | xhttp h3 传输层。
header-custom: 总是合包到数据包头。
header-dns: 原 mKCP 的 DNS 伪装。某些校园网在未登录的情况下允许 DNS 查询,给 KCP 添加 DNS 头。
header-dtls: 原 mKCP 的 DTLS 伪装。伪装成 DTLS 1.2 数据包。无额外配置。
header-srtp: 原 mKCP 的 SRTP 伪装。伪装成 SRTP 数据包,会被识别为视频通话数据(如 FaceTime)。无额外配置。
header-utp: 原 mKCP 的 uTP 伪装。伪装成 uTP 数据包,会被识别为 BT 下载数据。无额外配置。
header-wechat: 原 mKCP 的 WeChat Video 伪装。伪装成微信视频通话的数据包。无额外配置。
header-wireguard: 原 mKCP 的 WireGuard 伪装。伪装成 WireGuard 数据包。(并不是真正的 WireGuard 协议)无额外配置。
mkcp-original: mKCP 曾经默认应用的简单混淆,你可能需要配置它来连接以前的 mKCP 服务器。无额外配置。
mkcp-aes128gcm: 对应原 mKCP 的 seed 功能。使用 AES-128-GCM 进行混淆。
noise: 在发送数据前发送的噪声。
salamander: Salamander 混淆。(来自 Hysteria2)
sudoku:
xdns: 利用 DNS 查询来传输数据(类似 DNSTT)。它将执行标准的 DNS TXT 查询来传输载荷。
由于技术限制,它给出的 MTU 非常小,无法使用 QUIC,建议搭配 mKCP 使用。推荐的 MTU 值:客户端 130,服务端 900。
因为执行的查询是标准的,它可以透过任何 UDP DNS 服务器进行转发,尽管效率可能十分不理想。
要使用这个功能,需要服务端监听 53 端口,然后代理协议将目标指向一个 DNS 服务器(如 8.8.8.8:53),并且你拥有 domain 的域名,然后将其 NS 记录指向服务端。
比如持有 example.com,那么设置 a.example.com A记录 指向 ip,设置 t.example.com NS记录 指向 t.example.com,最后使用的是 t.example.com。设置 A记录 的不能为 NS记录 的子域。
xicmp: 要求至少 CAP_NET_RAW 权限且在最外层,也就是数组第一个,不可搭配 udpHop 与 dialerProxy。
udp[n].settings: header-custom | header-dns | mkcp-aes128gcm | noise | salamander | sudoku | xdns | xicmp
header-custom
{
"client": [
{
"rand": 0,
"randRange": "0-255",
"type": "",
"packet": []
}
],
"server": [
{
"rand": 0,
"randRange": "0-255",
"type": "",
"packet": []
}
]
}2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
client[n].rand: 添加指定长度随机字节,与 packet 冲突。
client[n].randRange: 随机字节范围,默认 0-255。
client[n].type: packet 类型,array | str | hex | base64,默认为 array。
client[n].packet: 添加固定数据,与 rand 冲突。
header-dns
{
"domain": "www.example.com"
}2
3
mkcp-aes128gcm
{
"password": "your-password"
}2
3
noise
{
"reset": 0,
"noise": [
{
"rand": "1-8192",
"randRange": "0-255",
"type": "",
"packet": [],
"delay": "10-20"
}
]
}2
3
4
5
6
7
8
9
10
11
12
noise[n].rand: 添加随机或指定长度随机字节,与 packet 冲突。
noise[n].randRange: 随机字节范围,默认 0-255。
noise[n].type: packet 类型,array | str | hex | base64,默认为 array。
noise[n].packet: 添加固定数据,与 rand 冲突
noise[n].delay: 单位毫秒,发送噪声后延迟指定时间后再发下一个。
salamander
{
"password": "your-password"
}2
3
sudoku
{
"password": "",
"ascii": "",
"customTable": "",
"customTables": [""],
"paddingMin": 0,
"paddingMax": 0
}2
3
4
5
6
7
8
9
10
同 TCP 版本
xdns
{
"domain": "www.example.com"
}2
3
xicmp
{
"listenIp": "0.0.0.0",
"id": 0
}2
3
4
listenIp: 监听的 ip。
id: 如果同 ip 下有多客户端,建议服务端保持为 0。
quicParams: quicParamsObject
quicParams
{
"congestion": "force-brutal",
"debug": false,
"brutalUp": "60 mbps",
"brutalDown": 0,
"udpHop": {
"ports": "20000-50000",
"interval": "5-10"
},
"initStreamReceiveWindow": 8388608,
"maxStreamReceiveWindow": 8388608,
"initConnectionReceiveWindow": 20971520,
"maxConnectionReceiveWindow": 20971520,
"maxIdleTimeout": 30,
"keepAlivePeriod": 0,
"disablePathMTUDiscovery": false,
"maxIncomingStreams": 1024
}2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
用于 XHTTP H3 以及 hysteria 的 QUIC 配置调整。其中 XHTTP
congestion: reno | bbr | brutal | force-brutal
拥塞控制算法,Hysteria 默认为 brutal,XHTTP H3 默认使用 bbr。
reno/bbr: 知名算法。
brutal: 与对端协商固定发包速率或降级到 BBR,只支持 Hysteria 传输(因为 XHTTP 无协商机制)。
force-brutal: 同 brutal,但强制使上行使用 brutalUp 固定发包速率,无视对端协商。
debug: false | true
启用 bbr/brutal congestion control 日志。
brutalUp: string
brutalDown: string
限制的上传/下载速率。默认值为 0。
格式用户友好,支持各种常见的比特每秒写法,包括 1000000 100kb 20 mb 100 mbps 1g 1 tbps 等等等,大小写不敏感,单位之间可以带或者不带空格,无单位时默认为 bps(比特每秒),不能低于 65535 bps。
协商行为和 Hysteria brutal 一致:
服务端的值将限制客户端可以选择的最大 Brutal 模式速率,为 0 表示不限制客户端。
客户端为 0 则表示使用 BBR 模式,不为 0 则表示使用 Brutal 模式,会受到服务端的限制。
注意相对论,服务端的上传是客户端的下载,服务端的下载是客户端的上传。
udpHop: {"ports": string, "interval": number}
UDP 端口跳跃配置。
ports 为跳跃的端口范围,可以是一个数值类型的字符串,如 "1234";或者一个数值范围,如 "1145-1919" 表示端口 1145 到端口 1919,这 775 个端口。可以使用逗号进行分段,如 11,13,15-17 表示端口 11、端口 13、端口 15 到端口 17 这 5 个端口。
interval 为端口跳跃间隔,单位为秒,至少为 5,默认 30 秒。
initStreamReceiveWindow: number
maxStreamReceiveWindow: number
initConnectionReceiveWindow: number
maxConnectionReceiveWindow: number
这四个为具体的 QUIC 窗口参数,除非你完全明白自己在做什么,否则不建议修改这些值。如果要改,建议保持流接收窗口与连接接收窗口的比例为 2:5
maxIdleTimeout: number
最长空闲超时时间(秒)。服务器会在多长时间没有收到任何客户端数据后关闭连接,范围为 4~120 秒,默认为 30 秒。
keepAlivePeriod: number
QUIC KeepAlive 间隔(秒)。范围为 2~60 秒。默认禁用。
disablePathMTUDiscovery: bool
是否禁用路径 MTU 发现。
其他实现里对于 !linux && !windows && !darwin OS 为强制禁用,xray 里则非强制,如果你为非 (linux || windows || darwin) 可能需要手动禁用。
maxIncomingStreams: number
服务端参数,如果设置则不得小于 8