linux 使用shadowsocks
值得推荐的其他客户端electron-ssr
提示
如果用的是ubuntu,请参考
ubuntu 下使用shadowsocks
安装
pip install shadowsocks
配置
创建配置文件: /etc/shadowsocks.json
内容如下:
{ "server":"1.2.3.4", // 服务器IP "server_port":8888, // 对外提供服务的端口 "local_port":1080, "password":"your password", "timeout":600, "method":"aes-256-cfb" }
作为服务器启动 Shadowsocks
前台启动
ssserver -c /etc/shadowsocks.json
后台运行
ssserver -c /etc/shadowsocks.json -d start # 启动 ssserver -c /etc/shadowsocks.json -d stop # 停止
作为客户端
前台启动
sslocal -c /etc/shadowsocks.json
后台运行
sslocal -c /etc/shadowsocks.json -d start # 启动 sslocal -c /etc/shadowsocks.json -d stop # 停止
相关推荐
xiaohong000 2015-05-13
人亦有言进退维谷 2014-07-16
阿织的学习笔记 2019-07-01
sevenpolaris 2015-07-14
HavenZhao 2019-06-30
85473363 2019-06-28
80427618 2019-06-28
cloudvtech 2019-06-28
godwot 2019-06-27
MoreWindowsBlog 2019-06-27
取经路上 2019-06-26
luoshuitianyi 2019-06-26
hagetis 2019-06-21
Mr傅 2016-10-16
mingming 2015-09-16
badun 2016-02-13
piglite 2016-11-24
sunkuohao 2015-05-10