1.一键脚本安装warp
wget -N --no-check-certificate https://cdn.jsdelivr.net/gh/eramicro/warp.sh/warp.sh && chmod 755 warp.sh && bash warp.sh menu
选择4. 自动配置 WARP WireGuard IPv6 网络
2.warp-google
既然只想用 Warp 上 Google,为什么不只让 Warp 上 Google 呢?
找到 /etc/wireguard/wgcf.conf编辑如下
增加
[Interface]
PostUp = ip rule add from 小鸡的IP table main
PostDown = ip rule del from 小鸡的IP table main
删除 AllowedIPs = 0.0.0.0/0 和 AllowedIPs = ::/0
这就是你的配置文件模版了,接下来我们只要下载 Google 的 IP 段加到配置文件中即可。 PostUp 和 PostDown 是为了让你的入站 IP 不被 WireGuard 接管,一定要加
3.获取 Google IP 段
curl -sL https://raw.githubusercontent.com/phlinhng/warp-google/main/ip/google-v4.txt >> /tmp/goog_ips
#curl -sL https://raw.githubusercontent.com/phlinhng/warp-google/main/ip/google-v6.txt >> /tmp/goog_ips
4.将获取的 Google IP 段加入配置文件中
for googip in `cat /tmp/goog_ips`; do echo "AllowedIPs = $googip" >> /etc/wireguard/wgcf.conf; done
5. 重启 WireGuard
wg-quick down wgcf ,恢复启动 wg-quick up wgcf
就是这么简单。