一、安装下载源码:

git clone https://github.com/rofl0r/proxychains-ng

编译和安装:

cd proxychains-ng
./configure --prefix=/usr --sysconfdir=/etc
make 
make install
make install-config
cd .. && rm -rf proxychains-ng

如果执行make && make install时提示make: cc: Command not found错误

这是由于新安装的Linux系统没有安装gcc环境,需要安装gcc

yum  install  gcc

二、配置proxychains-ng的配置非常简单,只需将代理加入[ProxyList]中即可,贴一份配置:

dynamic_chain
chain_len = 1 #round_robin_chain和random_chain使用
proxy_dns 
remote_dns_subnet 224
tcp_read_time_out 15000
tcp_connect_time_out 8000
[ProxyList]
socks5  127.0.0.1 1080
socks4  127.0.0.1 1081
http    127.0.0.1 3128

相关文章:

  • 2021-12-02
  • 2022-12-23
  • 2022-12-23
  • 2021-12-12
  • 2021-11-27
  • 2022-12-23
  • 2022-12-23
  • 2021-10-26
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-07
  • 2022-01-08
  • 2022-12-23
相关资源
相似解决方案