Agent Deployment

Shadowsocks + Privoxy realization socks5 proxy http proxy turn

Environmental centos7

1. shadowsocks

$ yum install python-setuptools && easy_install pip
$ pip install shadowsocks
 
$ ssserver -p 8888 -k password -m rc4-md5

 

2. Privoxy

$ yum install privoxy

Modify the file / etc / privoxy / config, modify the attribute values ​​are as follows:

listen-address  :8080
enable-remote-toggle  1

 Add at the end of the document

forward-socks5 / 127.0.0.1:8080

Start Privoxy to open http proxy

$ systemctl restart  privoxy.service

Close privoxy

$ systemctl stop  privoxy.service

 

Shadowsocks + Privoxy realization socks5 proxy http proxy turn

Environmental centos7

1. shadowsocks

$ yum install python-setuptools && easy_install pip
$ pip install shadowsocks
 
$ ssserver -p 8888 -k password -m rc4-md5

 

2. Privoxy

$ yum install privoxy

Modify the file / etc / privoxy / config, modify the attribute values ​​are as follows:

listen-address  :8080
enable-remote-toggle  1

 Add at the end of the document

forward-socks5 / 127.0.0.1:8080

Start Privoxy to open http proxy

$ systemctl restart  privoxy.service

Close privoxy

$ systemctl stop  privoxy.service

 

Guess you like

Origin www.cnblogs.com/yoyo1216/p/11016294.html