File tree 1 file changed +14
-3
lines changed 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -1050,6 +1050,19 @@ echo "deb [arch=amd64 signed-by=/usr/share/keyrings/cloudflare-warp-archive-keyr
1050
1050
sudo apt update
1051
1051
sudo apt install cloudflare-warp
1052
1052
```
1053
+ > ** Note**
1054
+ >
1055
+ > 安装过程中,可能会出现如下错误:
1056
+ > ```
1057
+ > The following packages have unmet dependencies:
1058
+ > cloudflare-warp : Depends: nftables but it is not going to be installed
1059
+ > Depends: gnupg2 but it is not going to be installed
1060
+ > Depends: desktop-file-utils but it is not going to be installed
1061
+ > Depends: libnss3-tools but it is not going to be installed
1062
+ > linux-headers-aws : Depends: linux-headers-5.3.0-1028-aws but it is not going to be installed
1063
+ > E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
1064
+ > ```
1065
+ > 你先执行 `sudo apt --fix-broken install`,然后再执行 `sudo apt install cloudflare-warp` 即可。
1053
1066
1054
1067
**2) 配置 Cloudflare WARP**
1055
1068
@@ -1100,10 +1113,8 @@ curl -x "socks5://127.0.0.1:40000" ipinfo.io
1100
1113
如果输出现如下的信息,那么恭喜你,你已经成功了
1101
1114
1102
1115
``` json
1103
- {
1104
1116
"ip" : " 104.28.247.70" ,
1105
1117
"org" : " AS13335 Cloudflare, Inc."
1106
- }
1107
1118
```
1108
1119
1109
1120
** 5)配置 Gost 路由转发**
@@ -1140,7 +1151,7 @@ sudo docker run -d --name gost-warp \
1140
1151
-v ${CERT_DIR} :${CERT_DIR} :ro \
1141
1152
--net=host ginuerzh/gost \
1142
1153
-L " http2://${USER} :${PASS} @${BIND_IP} :8443?cert=${CERT} &key=${KEY} &probe_resist=code:404&knock=www.google.com" \
1143
- -F " socks://localhost:40000
1154
+ -F " socks://localhost:40000"
1144
1155
```
1145
1156
1146
1157
> ** Note**
You can’t perform that action at this time.
0 commit comments