共计 447 个字符,预计需要花费 2 分钟才能阅读完成。
本地应用 Clash
做
查看 clash
代理配置
能够看到 127.0.0.1:7890
同时反对 http
、socks5
协定的代理
在终端中间接运行:
export http_proxy="http://127.0.0.1:7890"
export https_proxy="http://127.0.0.1:7890"
或者走 socket5
协定的话
export http_proxy="socks5://127.0.0.1:7890"
export https_proxy="socks5://127.0.0.1:7890"
或者罗唆间接设置 all_proxy
export all_proxy=socks5://127.0.0.1:7890
上面测试下代理是否失效
先查看本机公网 ip
curl cip.cc
配置代理后再次查看本机公网 ip
export all_proxy=socks5://127.0.0.1:7890
curl cip.cc
能够看出,两次的公网地址不一样
参考
https://zhuanlan.zhihu.com/p/…
正文完