Shadowsocks 是一个安全的socks5代理,用于保护网络流量,是一个开源项目,项目地址。
下载
1 | sudo apt-get install python-pip python-m2crypto |
配置
sudo gedit /etc/shadowsocks/config.json
1
2
3
4
5
6
7
8
9
10
11{
"server":"remote-shadowsocks-server-ip-addr",
"server_port":8883,
"local_address":"127.0.0.1",
"local_port":1080,
"password":"abcdef",
"timeout":300,
"method":"aes-256-cfb",
"fast_open":false,
"workers":1
}
请根据实际情况配置
启动客户端
sslocal -c /etc/shadowsocks.json
浏览器扩展
Firefox可使用FoxyProxy Standard
Chrome可使用Proxy SwitchOmega
配置请自行Google/百度