CentOS:SS代理:修订间差异
imported>Riguz |
imported>Riguz 无编辑摘要 |
||
第50行: | 第50行: | ||
自动代理规则列表: | 自动代理规则列表: | ||
*https://raw.githubusercontent.com/gfwlist/gfwlist/master/gfwlist.txt | *https://raw.githubusercontent.com/gfwlist/gfwlist/master/gfwlist.txt | ||
==Chrome== | |||
按照SwitchOmega插件,然后设置自动代理规则: | |||
* proxy:Socks5 ,localhost:1080 | |||
* auto proxy: 满足上面的自动代理规则的使用proxy | |||
==Firefox== | |||
[[Category:Linux/Unix]] | [[Category:Linux/Unix]] |
2018年7月16日 (一) 07:33的最新版本
服务端
安装服务端:
yum install python-setuptools
easy_install pip
pip install shadowsocks
创建配置文件:
{
"server": "100.10.10.100",
"server_port": 443,
"local_address": "127.0.0.1",
"local_port": 1080,
"password": "password",
"timeout": 600,
"method": "rc4-md5"
}
启动服务:
ssserver -c ss.conf -d start
#或者
ssserver -p 1234 -k password -m aes-256-cfb
客户端
windows
Linux下客户端
#ubuntu
#sudo apt-get install python-pip
#sudo apt-get install python-setuptools
#sudo pip install shadowscoks
sudo dnf install python-pip
sudo pip install shadowsocks
sudo vim /etc/ss.json
...
#ss.json内容和上面一样
sslocal -c /etc/ss.json
MacOS
https://github.com/shadowsocks/shadowsocks-iOS/wiki/Shadowsocks-for-OSX-Help 自动代理规则列表:
Chrome
按照SwitchOmega插件,然后设置自动代理规则:
- proxy:Socks5 ,localhost:1080
- auto proxy: 满足上面的自动代理规则的使用proxy