Shadowsocks服务端客户端配置

买了个便宜的VPS,用来学习与测试,记录下Shadowsocks的配置过程。

服务端

博主较懒,找了一个一键安装脚本,写这篇博文的时候,又按正常程序安装了一次。所以服务端的安装配置分两种:一键安装脚本和正常安装。

一键安装

脚本原文:Shadowsocks Python版一键安装脚本

关于此脚本:

一键安装 Python 版 shadowsocks 的最新版,同时安装了 Python 包管理工具 pip。

默认配置:

服务器端口:自己设定(如不设定,默认为8989)

客户端端口:1080

密码:自己设定(如不设定,默认为teddysun.com)

备注:脚本默认创建单用户配置文件,如需配置多用户,安装完毕后参照下面的教程 多用户多端口配置文件 手动修改配置文件后重启即可。

使用方法:

使用root用户登录,运行以下命令:

wget --no-check-certificate https://raw.githubusercontent.com/teddysun/shadowsocks_install/master/shadowsocks.sh
chmod +x shadowsocks.sh
./shadowsocks.sh 2>&1 | tee shadowsocks.log

安装完成后,脚本提示如下:

Congratulations, shadowsocks install completed!
Your Server IP:your_server_ip
Your Server Port:your_server_port
Your Password:your_password
Your Local IP:127.0.0.1
Your Local Port:1080
Your Encryption Method:aes-256-cfb

Welcome to visit:http://teddysun.com/342.html
Enjoy it!

卸载方法:

使用root用户登录,运行以下命令:

./shadowsocks.sh uninstall

单用户配置文件

配置文件路径:/etc/shadowsocks.json

{
    "server":"0.0.0.0",
    "server_port":8989,
    "local_address":"127.0.0.1",
    "local_port":1080,
    "password":"yourpassword",
    "timeout":300,
    "method":"aes-256-cfb",
    "fast_open": false
}

多用户多端口配置文件

配置文件路径:/etc/shadowsocks.json

{
    "server":"0.0.0.0",
    "local_address":"127.0.0.1",
    "local_port":1080,
    "port_password":{
         "8989":"password0",
         "9001":"password1",
         "9002":"password2",
         "9003":"password3",
         "9004":"password4"
    },
    "timeout":300,
    "method":"aes-256-cfb",
    "fast_open": false
}

使用命令 :

启动:/etc/init.d/shadowsocks start    

停止:/etc/init.d/shadowsocks stop    

重启:/etc/init.d/shadowsocks restart    

状态:/etc/init.d/shadowsocks status    

升级:pip install -U shadowsocks

正常安装

安装

整过过程参考Shadowsocks 使用说明

VPS-CentOS:

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

使用

直接使用

ssserver -p 8989 -k password -m rc4-md5 -d start

或者使用配置文件进行配置,创建配置文件

vi /etc/shadowsocks.json

编辑内容如下

{
 "server":"my_server_ip",
 "local_address": "127.0.0.1",
 "local_port":1080,
  "port_password": {
        "10000":"password",
        "10001":"password"
 },
 "timeout":300,
 "method":"aes-256-cfb",
 "fast_open": false
}

字段说明:

server:服务器 IP (IPv4/IPv6),注意这也将是服务端监听的 IP 地址

server_port:监听的服务器端口

local_address:本地监听的 IP 地址

local_port:本地端端口

password:用来加密的密码

timeout:超时时间(秒)

method:加密方法,可选“aes-256-cfb”, rc4-md5等。

fast_opentruefalse。如果你的服务器 Linux 内核在3.7+,可以开启 fast_open 以降低延迟。
开启方法:

echo 3 > /proc/sys/net/ipv4/tcp_fastopen

开启之后,将 fast_open 的配置设置为 true 即可。

workers:workers数量,默认为 1

使用配置文件在后台运行:

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

设置开机启动

vi /etc/rc.local

添加如下字段:

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

重启后客户端测试

shutdown -r now

客户端

全平台客户端下载

Ubuntu下配置Shadowsocks

Ubuntu配置Shadowsocks Virtualbox