本文介绍 Shadowsocks Python版一键安装脚本,以及在 Windows/Linux 环境安装部署 client 使用方法。
服务器端安装
适用环境
- 系统支持:CentOS 6,7,Debian,Ubuntu
- 内存要求:≥128M
关于本脚本
一键安装 Python 版 Shadowsocks 的最新版:https://github.com/teddysun/shadowsocks_install
默认配置
- 服务器端口:自己设定(如不设定,默认从 9000-19999 之间随机生成)
- 密码:自己设定
- 加密方式:自己设定(如不设定,默认为 aes-256-gcm)
备注:脚本默认创建单用户配置文件,如需配置多用户,安装完毕后参照下面的教程示例手动修改配置文件后重启即可。
安装方法
使用root用户登录,运行以下命令:
wget --no-check-certificate -O shadowsocks.sh https://raw.githubusercontent.com/teddysun/shadowsocks_install/master/shadowsocks.sh
chmod +x shadowsocks.sh
./shadowsocks.sh 2>&1 | tee shadowsocks.log
安装完成后,脚本提示如下:
Congratulations, Shadowsocks-python server install completed!
Your Server IP :your_server_ip
Your Server Port :your_server_port
Your Password :your_password
Your Encryption Method:your_encryption_method
Welcome to visit:https://teddysun.com/342.html
Enjoy it!
配置安全组规则:
iptables -I INPUT -p tcp -m tcp --dport 9958 -j ACCEPT
service iptables save
卸载方法
使用root用户登录,运行以下命令:
./shadowsocks.sh uninstall
单用户配置文件示例,配置文件路径:/etc/shadowsocks.json
{
"server":"0.0.0.0",
"server_port":your_server_port,
"local_address":"127.0.0.1",
"local_port":1080,
"password":"your_password",
"timeout":300,
"method":"your_encryption_method",
"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":"your_encryption_method",
"fast_open": false
}
使用命令
- 启动:/etc/init.d/shadowsocks start
- 停止:/etc/init.d/shadowsocks stop
- 重启:/etc/init.d/shadowsocks restart
- 状态:/etc/init.d/shadowsocks status
客户端安装
Windows
https://github.com/shadowsocks/shadowsocks-windows/releases
Linux
Debian/Ubuntu:
apt-get install python-pip
pip install shadowsocks
CentOS:
yum install python-setuptools && easy_install pip
pip install shadowsocks
创建shadowsocks的配置文件,一般放到 /etc下面:
sudo vim /etc/shadowsocks.json
{
"server":"my_server_ip",
"server_port":my_server_port,
"local_address": "127.0.0.1",
"local_port":1080,
"password":"my_password",
"timeout":300,
"method":"aes-256-cfb"
}
配置说明:
- my_server_ip改为自己的服务器IP
- my_server_port改为自己的服务器端口
- my_server_password改为自己的密码
- method的值改为自己的加密方式,一般是aes-256-cfb或者rc4-md5
开机启动:
sudo vim /etc/systemd/system/shadowsocks.service
[Unit]
Description=Shadowsocks Client Service
After=network.target
[Service]
Type=simple
User=root
ExecStart=/usr/local/bin/sslocal -c /etc/shadowsocks.json
[Install]
WantedBy=multi-user.target
生效:
systemctl enable /etc/systemd/system/shadowsocks.service
启动:
systemctl start /etc/systemd/system/shadowsocks.service
浏览器代理
安装 SwitchyOmega 插件
以 Chrome
为例,安装 SwitchyOmega
插件代理,Github 下载 SwitchyOmega:
https://github.com/FelisCatus/SwitchyOmega/releases/
Chrome
打开chrome://extensions/
,把插件托进去安装。
配置 Proxy:
- Server填写shadowsocks.json配置中的local_address
- Port填写shadowsocks.json配置中的local_port
- 左边Apply changes保存
配置 Auto Switch:
- Rule list rules的Profile填proxy
- Default的Profile填[Direct]
- Rule List Format选择AutoProxy
Rule List URL填写gfwlist的规则:
https://raw.githubusercontent.com/gfwlist/gfwlist/master/gfwlist.txt
下载规则文件Download Profile Now
左边Apply changes保存
问题
谷歌chrome浏览器 同步 Request canceled 自动切换模式下 Chrome 无法登陆谷歌账户
添加规则
*.googleapis.com +proxy
之后便可正常登陆
完毕。
相关文章
最新评论
加载中...