windows
和linux
的命令行设置不同,所以分开来讲,但不管是使用什么系统,都需要提前在本地以及代理服务器上安装并配置好shadowsocks
客户端和服务
linux系统可以使用来绕过ZF的网络封锁,
对于windows
用户,可以进行如下操作:
使用cmd
# setset http_proxy=http://127.0.0.1:1080set https_proxy=http://127.0.0.1:1080# testcurl -vv google.com# unsetset http_proxy=set https_proxy=
使用git bash
# setexport http_proxy=http://localhost:1080export https_proxy=http://localhost:1080# testcurl -vv google.com# unsetexport http_proxy=export https_proxy=
以上
参考: