论Shadowsocks的重要性
随着国际形势的变换,日趋严重的帝国主义压迫让我们不得不寻找更多的上网方式。
yum install epel-release
yum update
yum install python-setuptools m2crypto supervisor
easy_install pip
pip install shadowsocks
服务端配置
vi /etc/shadowsocks.json
{
“server”:”0.0.0.0″,
“server_port”:838,
“local_port”:1080,
“password”:”yourpassword”,
“timeout”:600,
“method”:”aes-256-cfb”
}
vi /etc/supervisord.conf
[program:shadowsocks]
command=ssserver -c /etc/shadowsocks.json
autostart=true
autorestart=true
user=root
客户端配置
vi /etc/shadowsocks.json
{
“server”:”202.108.33.108″,
“server_port”:80,
“local_address”:”192.168.1.165″,
“local_port”:1084,
“password”:”woaini”,
“timeout”:600,
“method”:”aes-256-cfb”
}
后期升级
pip install –upgrade shadowsocks