Replies: 1 comment 1 reply
-
如果你的VPS不是双栈,把这行删掉。"XXXXXXX::/128" // 粘贴你的 warp IPv6 地址,结尾加 /128 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
现在使用的是wireguard_for_v1.8.6_or_higher.md中的示例配置,发现新版配置了XHTTP 上下行分离后会无法连通,但是另外一台服务器vless+reality outbounds配置了wireguard可以正常分流到CF成功解锁流媒体,各位大佬们目前新版本支持出站配置wiregurad吗,以下是我出站配置案例:
{
"protocol": "wireguard",
"settings": {
"secretKey": "XXXXXX", // 粘贴你的 "private_key" 值
"address": [
"172.16.0.2/32",
"XXXXXXX::/128" // 粘贴你的 warp IPv6 地址,结尾加 /128
],
"peers": [
{
"publicKey": "XXXXXXX",
"allowedIPs": [
"0.0.0.0/0",
"::/0"
],
"endpoint": "engage.cloudflareclient.com:2408" // IPv6 地址 [2606:4700:d0::a29f:c001]:2408,或填写域名 engage.cloudflareclient.com:2408
}
],
"reserved":[XXXXX], // 粘贴你的 "reserved" 值
"mtu": 1280,
"domainStrategy": "ForceIPv6v4" // 若需使用 cloudflare 的 IPv4,改为 "ForceIPv4"
},
"tag": "warp"
}
Beta Was this translation helpful? Give feedback.
All reactions