Add domainStrategy explanation to wireguard (#426)
* Add domainStrategy explanation to wireguard * 更新解释描述pull/427/head
parent
611b10b398
commit
6482b92d57
|
@ -25,7 +25,8 @@
|
||||||
],
|
],
|
||||||
"mtu": 1420, // optional, default 1420
|
"mtu": 1420, // optional, default 1420
|
||||||
"reserved": [1, 2, 3],
|
"reserved": [1, 2, 3],
|
||||||
"workers": 2 // optional, default runtime.NumCPU()
|
"workers": 2, // optional, default runtime.NumCPU()
|
||||||
|
"domainStrategy": "ForceIP" // 需要 Xray-core v1.8.6 或更高版本
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -57,6 +58,12 @@ Wireguard 使用线程数。
|
||||||
|
|
||||||
Wireguard 服务器列表,其中每一项是一个服务器配置。
|
Wireguard 服务器列表,其中每一项是一个服务器配置。
|
||||||
|
|
||||||
|
> `domainStrategy`: "ForceIPv6v4" | "ForceIPv6" | "ForceIPv4v6" | "ForceIPv4" | "ForceIP"
|
||||||
|
|
||||||
|
需要 Xray-core v1.8.6 或更高版本。<br>
|
||||||
|
留空时默认值是 `"ForceIP"`。<br>
|
||||||
|
当接收到的请求是域名,无论 `domainStrategy` 是否留空(或不写 `domainStrategy`),使用[内置 DNS 服务器](./dns.md)解析获取 IP(若配置中没写 DNS 部分,使用系统 DNS),将此 IP 通过 wireguard 发出连接。
|
||||||
|
|
||||||
### Peers
|
### Peers
|
||||||
|
|
||||||
```json
|
```json
|
||||||
|
|
Loading…
Reference in New Issue