Ubuntu安装shadowsocks服务器
- 2017-11-23 22:26:00
- wyd621
- 原创 0
1、安装
apt install shadowsocks
2、配置
打开/etc/shadowsocks/config.json
{
"server":"0.0.0.0",
"server_port":8388,
"local_address": "127.0.0.1",
"local_port":1080,
"password":"xxxxxx",
"timeout":300,
"method":"aes-256-cfb",
"fast_open": false,
"workers": 1
}
3、启动
在/etc/rc.local中写入
/usr/bin/ssserver -c /etc/shadowsocks/config.json > /tmp/shadowsocks.log 2>&1 &
在windows安装shadowsocks客户端,配置好就可以了。
发表评论