Centos 6 SS一键包

转发

wget –no-check-certificate -O shadowsocks.sh https://raw.githubusercontent.com/teddysun/shadowsocks_install/master/shadowsocks.sh

chmod +x shadowsocks.sh

./shadowsocks.sh 2>&1 | tee shadowsocks.log

卸载./shadowsocks.sh uninstall

配置文件路径为:/etc/shadowsocks.json

单用户配置:
{
“server”:“your_server_ip”,
server_port”:8989,
local_address”:“127.0.0.1”,
local_port”:1080,
password”:“yourpassword”,
timeout”:300, “method”:
aes-256-cfb”,
fast_open”: false
}

多用户配置:

{
“server”:“your_server_ip”,
“local_address”: “127.0.0.1”,
“local_port”:1080,
“port_password”:{
“8989”:“password0”,
“9001”:“password1”,
“9002”:“password2”,
“9003”:“password3”,
“9004”:“password4”
},
“timeout”:300,
“method”:“aes-256-cfb”,
“fast_open”: false
}