Ubuntu Shadowsocks Privoxy 客户端配置

干啥的不说了,ubuntu下Shadowsocks不能正常使用,需通过Privoxy中转

 

 

安装Privoxy

(python-pip python-m2crypto用来安装shadowsocks)

$ sudo apt-get update
 
$ sudo apt-get install python-pip python-m2crypto privoxy

 安装 shadowsocks

$ sudo pip install shadowsocks
 

 配置shadowsocks

 

 

 

$ sudo mkdir -p /etc/shadowsocks
$ sudo vi /etc/shadowsocks/config.json
 

 

{

"server":"你所申请服务器ip安装了Shadowsocks server",

"server_port":443,

"local_port":1080,

"password":"password",

"timeout":600,

"method":"aes-256-cfb"

}

 

配置privoxy

 

$ sudo vi /etc/privoxy/config
 

 

最后追加

 

forward-socks5 / 127.0.0.1:1080 .
 

 启动 shadowsocks

 

sslocal -c /etc/shadowsocks/config.json
 

 启动privoxy

sudo service privoxy start

 

配置系统proxy

vi /etc/profile

 

export http_proxy=http://localhost:8118/
export https_proxy=http://localhost:8118/
export HTTP_PROXY=http://localhost:8118/
export HTTPS_PROXY=http://localhost:8118/

 

source /etc/profile # 使起效

 

猜你喜欢

转载自wiselyman.iteye.com/blog/2210939