«

如何搭建ss代理

emer 发布于 2018-9-4 17:26   2489 次阅读     


Cent:

yum -y install epel-release  

yum install python-pip


pip install shadowsocks
  • 1
  • 2

Ubuntu:

apt-get install python-pip
pip install shadowsocks 
  • 1
  • 2

至此,你的软件就装好了, 然后你需要写个配置文件,我写完放到了 /etc/ss.json

{
  "server": "",
  "server_port": 443,  
  "local_address": "127.0.0.1",  
  "local_port": 1080,  
  "password": "",
  "timeout": 300,  
  "method":"aes-256-cfb",  
} 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

最后一个method是协议,可以直接这么写,上方的8388是你想开的端口,注意不要和其他程序冲突,并在你的云服务厂商那里设置好安全组

之后运行

ssserver -c /etc/ss.json -d start 
  • 1

就可以了。