|
注册免广告
您需要 登录 才可以下载或查看,没有账号?注册
×
WARP目前貌似不支持ARM服务器
AMD服务器安装WARP:https://pkg.cloudflareclient.com/#ubuntu
运行:- warp-cli register
- warp-cli set-mode proxy
- warp-cli enable-always-on # 即使服务器重启,WARP 也会自动启动
- warp-cli connect
复制代码
检测是否运行:- export ALL_PROXY=socks5://127.0.0.1:40000
- curl ip.fm # log 包含 Cloudflare 字样即运行成功
- unset ALL_PROXY
复制代码
客户端clash示例:
- port: 7890
- proxies:
- - name: Oracle
- type: trojan
- server: 141.147.xxx.xxx
- port: 443
- password: xxxxxxxxx
- - name: WarpLocal
- type: socks5
- server: 127.0.0.1
- port: 40000
- proxy-groups:
- - name: Select
- type: select
- proxies:
- - WARP
- - Oracle
- - name: WARP
- type: relay
- proxies:
- - Oracle
- - WarpLocal
- rules:
- - DOMAIN-SUFFIX, openai.com, WARP
- - GEOIP, CN, DIRECT
- - MATCH, Select
复制代码
补充内容 (2023-4-20 21:58):
wget有时默认用IPv6导致无法下载,可以用wget -4 url命令强制用IPv4下载(老版 WARP 是用 wget 下载安装包)
补充内容 (2023-4-20 21:59):
强制用ARM机器安装会提示:package architecture (amd64) does not match system (arm64)
补充内容 (2023-4-20 22:36):
卸载方式:https://developers.cloudflare.co ... /remove-warp/#linux
补充内容 (2023-6-28 17:55):
据说这种方式的 warp 流量是没限制的
补充内容 (2023-7-4 10:33):
如果不在客户端转发,也可以直接服务器的 config.json 配置 forward_proxy 参数,直接在服务器端转发,这样客户端就只能用 cf 的 IP 了 |
|