From 456ea34aa6ed32531731fa4aef875c0b3d03c8c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=A1=E3=81=8B?= <88967758+chika0801@users.noreply.github.com> Date: Mon, 18 Dec 2023 12:10:02 +0800 Subject: [PATCH] Add domainStrategy explanation to wireguard --- docs/config/outbounds/wireguard.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/config/outbounds/wireguard.md b/docs/config/outbounds/wireguard.md index 8056a25..9138149 100644 --- a/docs/config/outbounds/wireguard.md +++ b/docs/config/outbounds/wireguard.md @@ -25,7 +25,8 @@ ], "mtu": 1420, // optional, default 1420 "reserved": [1, 2, 3], - "workers": 2 // optional, default runtime.NumCPU() + "workers": 2, // optional, default runtime.NumCPU() + "domainStrategy": "ForceIPv6v4" // 需要 Xray-core v1.8.6 或更高版本 } ``` @@ -57,6 +58,11 @@ Wireguard 使用线程数。 Wireguard 服务器列表,其中每一项是一个服务器配置。 +> `domainStrategy`: "ForceIPv6v4" | "ForceIPv6" | "ForceIPv4v6" | "ForceIPv4" | "ForceIP" + +需要 Xray-core v1.8.6 或更高版本。
+当接收到的请求是域名时,使用[内置 DNS 服务器](./dns.md)解析获取 IP 后, 将此 IP 通过 wireguard 发出连接。 + ### Peers ```json