终端使用privoxy代理

0x01 安装


1
apt-get install privoxy

0x02 修改配置


1
2
3
4
5
6
7
8
9
10
11
12
sudo vim /etc/privoxy/config
配置内容
# 在 froward-socks4下面添加一条socks5的,因为shadowsocks为socks5,
# 地址是127.0.0.1:1080。注意他们最后有一个“.”
# forward-socks4 / socks-gw.example.com:1080 .
forward-socks5 / 127.0.0.1:1080 .

# 下面还存在以下一条配置,表示privoxy监听本机8118端口,
# 把它作为http代理,代理地址为 http://localhost.8118/ 。
# 可以把地址改为 0.0.0.0:8118,表示外网也可以通过本机IP作http代理。
# 这样,你的外网IP为1.2.3.4,别人就可以设置 http://1.2.3.4:8118/ 为http代理。
 listen-address localhost:8118

0x03 重启服务


1
sudo systemctl restart privoxy

0x04 终端导入代理


1
2
3
export http_proxy="ip:port"
export https_proxy="ip:port"
source ~/.bashrc