Ubuntu安装Shadowsocks
2017年10月5日
1 条评论
以前准备安装VPN的,后来发现怎么都连接不上去,遂放弃。现在有更好的解决方案了。首先在安装前先更新下系统,然后
1, sudo apt-get install python-pip
安装完成后,可以查看pip 的版本号:pip -V
2, sudo pip install shadowsocks
3, 编辑vi /etc/shadowsocks.json
{
“server”:”IP”,#你的服务器IP
“server_port”:8389, #你要开放的接口
“password”:”******”, #密码
“timeout”:300,
“method”:”aes-256-cfb”,
“fast_open”:true,
“workers”: 1
}
4, 启动服务 sudo ssserver -c /etc/shadowsocks.json -d start
5, 加入到开机启动,编辑/etc/rc.local,exit 0之前加入上面启动服务那句话。
6,配置客户端就可以上网啦。