1 分钟快速搭建 Shadowsocks
快速搭建 SS 服务
前提
yum install python-setuptools && easy_install pip
pip install shadowsocks{
"server":"0.0.0.0", #服务器IP地址
"server_port":8388, #服务监听端口
"local_port":1080, #本地连接端口
"password":"barfoo", #加密传输使用到的密码
"timeout":600, #连接超时时间
"method":"aes-256-cfb" #加密算法
}ssserver -c /etc/shadowsocks.json -d start
ssserver -c /etc/shadowsocks.json -d stopLast updated
Was this helpful?