|
本帖最后由 mohanfeng 于 2021-9-23 18:31 编辑
大佬勿喷,研究两天搞定了,分享下经验
注:安装warp会降低速度
第一步正常安装v2ray,我用的官方脚本,实际使用什么都行。
第二步使用warp一键安装脚本
bash <(curl -fsSL git.io/warp.sh) d
第三步,修改v2配置文件
在outbounds里添加以下内容
- {
- "tag":"IP4_out",
- "protocol": "freedom",
- "settings": {}
- },
- {
- "tag":"IP6_out",
- "protocol": "freedom",
- "settings": {
- "domainStrategy": "UseIPv6" // 指定使用 IPv6
- }
复制代码
在routing里添加以下内容
- {
- "type": "field",
- "outboundTag": "IP6_out",
- "domain": ["geosite:netflix","geosite:google"] // netflix google 走 IPv6
- },
- {
- "type": "field",
- "outboundTag": "IP4_out",
- "network": "udp,tcp"// 其余走 IPv4
- }
复制代码
第四步,重启v2,测试谷歌 |
|