use-warp-on-vps

在vps上装warp

转自

https://p3terx.com/archives/cloudflare-warp-configuration-script.html

为什么要这么搞呢

不知道

安装

下面的 git.io/warp.sh 可以替换成这个链接或者这个链接

添加 WARP Wire­Guard 双栈全局网络,直接使用以下 WARP 脚本命令一把梭:

1
bash <(curl -fsSL git.io/warp.sh) d

添加或更改 IPv4/​IPv6 网络中的一个出口走 WARP Wire­Guard 网络,使用以下 WARP 脚本命令一把梭:

1
2
3
4
5
# 自动配置 WARP WireGuard IPv4 网络(IPv4 出站流量走 WARP 网络)
bash <(curl -fsSL git.io/warp.sh) 4

# 自动配置 WARP WireGuard IPv6 网络(IPv6 出站流量走 WARP 网络)
bash <(curl -fsSL git.io/warp.sh) 6

其它相关命令:

1
2
3
4
5
6
7
8
# 查看 WARP 脚本子命令列表
bash <(curl -fsSL git.io/warp.sh) help

# 重启 WARP WireGuard 网络接口
systemctl restart wg-quick@wgcf

# 禁用 WARP WireGuard 网络接口
systemctl disable wg-quick@wgcf --now
0%