CentOS6 安装 SS

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/a973893384/article/details/51228010
yum install python-setuptools && easy_install pip 
pip install shadowsocks

vim /etc/shadowsocks.json

{ 
    "server" : "服务器IP", 
    "server_port" : 端口, 
    "local_address": "127.0.0.1", 
    "local_port" : 1080, 
    "password" : "密码", 
    "timeout" : 600, 
    "method" : "rc4-md5"
}

ssserver -c /etc/shadowsocks.json -d start

ssserver -c /etc/shadowsocks.json -d stop

猜你喜欢

转载自blog.csdn.net/a973893384/article/details/51228010