centos 搭建ss

1、安装Shadowsocks服务端:

# yum update
# yum install python-setuptools && easy_install pip
# pip install shadowsocks

2、配置Shadowsocks:

  此文件默认不存在,需要创建:

# vim /etc/shadowsocks.json
{
"server":"your_server_ip",
"server_port":8388,
"password":"yourpassword",
"timeout":300,
"method":"aes-256-cfb",
"fast_open":false,
"workers": 1
}

3、启动Shadowsocks:

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

猜你喜欢

转载自www.cnblogs.com/turn2i/p/10620078.html