一、安装下载源码:
git clone https://github.com/rofl0r/proxychains-ng
编译和安装:
cd proxychains-ng./configure --prefix=/usr --sysconfdir=/etcmake make installmake install-configcd .. && rm -rf proxychains-ng
如果执行make && make install时提示make: cc: Command not found错误
这是由于新安装的Linux系统没有安装gcc环境,需要安装gcc
yum install gcc
二、配置proxychains-ng的配置非常简单,只需将代理加入[ProxyList]中即可,贴一份配置:
dynamic_chainchain_len = 1 #round_robin_chain和random_chain使用proxy_dns remote_dns_subnet 224tcp_read_time_out 15000tcp_connect_time_out 8000[ProxyList]socks5 127.0.0.1 1080socks4 127.0.0.1 1081http 127.0.0.1 3128