主要工具
- AWS
- SSR
- Client
AWS
AWS新用户可免费使用一年,每月流量15G,单节点流量每月1G.
AWS免费配置教程参考:AWS官网
SSR
For 4-version SSR
- 内存要求: >=128M
- 一键安装Shadowsocks-Python, ShadowsocksR, Shadowsocks-Go, Shadowsocks-libev版(四选一)服务端;
- 各版本的启动脚本及配置文件名不再重合;
- 每次运行可安装一种版本;
- 支持以多次运行来安装多个版本,且各个版本可以共存(注意端口号需设成不同);
- 若已安装多个版本,则卸载时也需多次运行(每次卸载一种);
- Shadowsocks-Python和ShadowsocksR安装后不可同时启动(因为本质上都属Python版).
- 默认配置:
- 服务器端: 自己设定(如不设定,默认从9000-19999之间随机生成)
- 密码: 自己设定(如不设定,默认为teddysun.com)
- 加密方式: 自己设定(如不设定,Python和libev版默认为aes-256-gcm,R和Go版默认为aes-256-cfb)
- 协议(protocol): 自己设定(如不设定,默认为origin) (仅限ShadowsocksR版)
- 混淆(obfs): 自己设定(如不设定,默认为plain) (仅限ShadowsocksR版)
备注:脚本默认创建单用户配置文件,如需配置多用户,请手动修改相应的配置文件后重启即可。
- 其他需知:
libev版的Shadowsocks最新版本特点是内存占用小(600k左右),使用libev和C编写,低CPU消耗.
Server安装
root用户下执行:
1 | $ wget --no-check-certificate -O shadowsocks-all.sh https://raw.githubusercontent.com/teddysun/shadowsocks_install/master/shadowsocks-all.sh |
Server卸载
root用户下执行:
1 | $ ./shadowsocks-all.sh uninstall |
启动脚本
启动脚本后面的参数含义,从左至右依次为:启动,停止,重启,查看状态。
Shadowsocks-Python版:
1 | $ /etc/init.d/shadowsocks-python start | stop | restart | status |
ShadowsocksR版:
1 | $ /etc/init.d/shadowsocks-r start | stop | restart | status |
Shadowsocks-Go版:
1 | $ /etc/init.d/shadowsocks-go start | stop | restart | status |
Shadowsocks-libev版:
1 | $ /etc/init.d/shadowsocks-libev start | stop | restart | status |
各版本默认配置文件
Shadowsocks-Python版:
1 | /etc/shadowsocks-python/config.json |
ShadowsocksR版:
1 | /etc/shadowsocks-r/config.json |
Shadowsocks-Go版:
1 | /etc/shadowsocks-go/config.json |
Shadowsocks-libev版:
1 | /etc/shadowsocks-libev/config.json |
SSR配置文件
/etc/shadowsocks-*/config.json需知:
- 同时支持IPv4与IPv6;
- 启动多端口支持;
- 多用户配置时注意: 多个端口从防火墙(iptables或firewalld)中打开.
具体配置:
1 | { |
Client
在iOS端使用superWingy,mac端使用ShadowsocksX-NG,其他端参考如下.
客户端: ss客户端
SS-Over-Websocket
1 | $ git clone https://github.com/VincentChanX/shadowsocks-over-websocket |