1:使只有IPV6的VPS获取访问IPV4的能力,套上WARP的ip,变成双栈VPS!
2:基本能隐藏VPS的真实IP!
3:支持代理协议直连电报Telegram,支持代理协议连通软路由Openwrt各种翻墙插件!
4:支持原本需要IPV4支持的Docker等应用!
5:加速VPS到CloudFlare CDN节点访问速度!
6:避开原VPS的IP需要谷歌验证码问题(目前无法彻底避开啦)!
7:替代NAT64/DNS64方案,网络效率更高!
wget -N --no-check-certificate https://cdn.jsdelivr.net/gh/ygkkk/WarpEUserv/wgmd.sh && chmod +x wgmd.sh && ./wgmd.sh
进入脚本快捷方式 bash wgmd.sh
推荐使用Xray脚本项目(mack-a):https://github.com/mack-a/v2ray-agent
{
"outbounds": [
{
"tag":"IP6-out",
"protocol": "freedom",
"settings": {}
},
{
"tag":"IP4-out",
"protocol": "freedom",
"settings": {
"domainStrategy": "UseIPv4"
}
}
],
"routing": {
"rules": [
{
"type": "field",
"outboundTag": "IP4-out",
"domain": [""]
},
{
"type": "field",
"outboundTag": "IP6-out",
"network": "udp,tcp"
}
]
}
}
手动临时关闭WARP网络接口
wg-quick down wgcf
手动开启WARP网络接口
wg-quick up wgcf
启动systemctl enable wg-quick@wgcf
开始systemctl start wg-quick@wgcf
重启systemctl restart wg-quick@wgcf
停止systemctl stop wg-quick@wgcf
关闭systemctl disable wg-quick@wgcf
感谢P3terx大及原创者们,参考来源:
https://p3terx.com/archives/debian-linux-vps-server-wireguard-installation-tutorial.html