1.proxychains安装
1
2
3
4
5
6
| git clone https://github.com/rofl0r/proxychains-ng.git
cd proxychains-ng
./configure
make && make install
cp ./src/proxychains.conf /etc/proxychains.conf
cd .. && rm -rf proxychains-ng
|
也可以用brew install proxychains-ng
安装。
2.编辑proxychains配置
1
| vim /etc/proxychains.conf
|
3.将socks4 127.0.0.1 9095
改为
ps: 默认的socks4 127.0.0.1 9095
是tor代理,而socks5 127.0.0.1 1080
是shadowsocks的代理。
proxychains.conf
文件说明了代理配置格式,如下,这里根据自己使用的代理来配置就行了。
1
2
3
4
5
6
7
8
9
10
11
12
13
| ProxyList format
94
95
96
97
98
99
100
101
102
103
104
105
|
4.使用方法
在需要代理的命令前加上 proxychains4 ,如:
1
| proxychains4 wget http:
|
参考资料:
幻想驿站
官方文档