ubuntu下proxychains的安装与配置

ubuntu下proxychains的安装与配置

  • 1.安装proxychains
  • 2.配置 /etc/proxychains.conf
  • 3. 其它

1.安装proxychains

sudo apt-get install proxychains

2.配置 /etc/proxychains.conf

修改 >socks4 127.0.0.1 9095为

socks5 127.0.0.1 1080

另外修改DNS:

proxy_dns 8.8.8.8

3. 其它

然后对于任何程序,只要在其前面加上proxychains命令就可以,例如:

proxychains xxx

xxx的所有连接就可以走proxychains了

你可能感兴趣的:(linux,websocket)