Proxy

shadowsocks 搭建

June 29, 2018
Proxy

正常的上网需要三个部分。 server local SwitchOmega shadowsocks server # 租一个境外的服务器vps,然后搭建如下: sudo apt install git python python-pip pyton3 python3-pip pip install git+https://github.com/shadowsocks/shadowsocks.git@master # 编辑配置文件: # sudo vim /etc/shadowsocks.json { "server": "149.28.194.217", # 服务器IP "server_port": 8964, # 服务器上的服务端口 "local_address": "127.0.0.1", # 本地地址 "local_port": 1080, # 本地需要代理的使用的端口 "password": "www1964878036", # 密码 "timeout": 300, # 超时时间 "method": "aes-256-cfb" # 加密方法: aes-256-cfb, 还有一种比较快的:salsa20 } # 直接启动: ssserver -c /etc/shadowsocks.json # 后台运行: ssserver -c /etc/shadowsocks.json -d start # 停止服务 ssserver -c /etc/shadowsocks. ...