ubuntu下使用shadowsocks
查看python版本:
python –version
低于 2.6 的,需要升级一下。
然后安装 PIP 环境:
apt-get install python-gevent python-pip
安装shadowsocks:
pip install shadowsocks
新建配置文件:
{ "server":"ip_address", "server_port":8989, "local_address":"127.0.0.1", "local_port":1080, "password":"password", "method":"aes-256-cfb" }
配置文件选项含义可以参阅:https://github.com/shadowsocks/shadowsocks/wiki/Configuration-via-Config-File
为了支持加密:
apt-get install python-m2crypto
启动:
前台:
ssserver -c /etc/shadowsocks.json
后台:
ssserver -c /etc/shadowsocks.json -d start
ssserver -c /etc/shadowsocks.json -d stop
Refer:
https://github.com/shadowsocks/shadowsocks
http://my.oschina.net/gengjie2/blog/366714
http://www.cnblogs.com/vincedotnet/p/3569648.html
http://www.zhihu.com/question/26418370
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。