PS:请注意一下本篇文章时间,目前(指 2016 看到的你们)已经过期.

推荐一下 Proxifier.

嗯,现在开始正题,配置 shadowsocks.首先奉上git:https://github.com/clowwindy/shadowsocks

然后 Client 端这里使用 node.js 的.

这里就是图.Server IP填入你的ss服务器ip/域名.Server Port填入服务器端口,Password就是服务器密码,Local Port是本地的Socks5代理端口,默认1080.Encryption中是加密方法,取决于服务端.

下面是服务端设置.

apt-get install python-pip //安装pip
pip install shadowsocks //安装shadowsocks
vim /etc/shadowsocks.json //配置shadowsocks

在json中输入:

{
    "server":"服务器IP/域名",
    "server_port":服务端端口,
    "local_address": "127.0.0.1",
    "local_port":1080,
    "password":"密码",
    "timeout":300,
    "method":"aes-256-cfb",
    "fast_open": false
}

自行替代.然后输入nohup ssserver -c /etc/shadowsocks.json -d start 启动.


Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.