标签归档:proxy

使用privoxy+ssh实现共享科学上网

开启端口转发

ssh -D 0.0.0.0:8888 sshuser@sshhostip -N -f

privoxy配置

vim /etc/privoxy/config

# 配置端口
listen-address  0.0.0.0:8090 # 端口为8090
# 配置所有配置转发
forward / 127.0.0.1:8888 .
# 局域网不转发
forward 192.168.*.*/ .
forward 10.*.*.*/ .
forward 127.*.*.*/ . 

开机自动启动privoxy

chkconfig privoxy on
service privoxy start

几个代理列表网站

国内

国外

修改hosts方式

  • http://www.awolau.com/hosts/google-hosts.html