Linux 利用proxychains在终端使用socks5代理

来源 点击打开链接


1.proxychains安装


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配置
vim /etc/proxychains.conf
3.将socks4 127.0.0.1 9095改为
socks5 127.0.0.1 1080
ps: 默认的socks4 127.0.0.1 9095是tor代理,而socks5 127.0.0.1 1080是s的代理。


proxychains.conf文件说明了代理配置格式,如下,这里根据自己使用的代理来配置就行了。

ProxyList format
 94 #       type  ip  port  [user pass]
 95 #       (values separated by 'tab' or 'blank')
 96 #
 97 #       only numeric ipv4 addresses are valid
 98 #
 99 #
100 #        Examples:
101 #
102 #       socks5  192.168.67.78   1080    lamer   secret
103 #       http    192.168.89.3    8080    justu   hidden
104 #       socks4  192.168.1.49    1080
105 #       http    192.168.39.93   8080

4.使用方法
在需要代理的命令前加上 proxychains4 ,如:

proxychains4 wget http://xxx.com/xxx.zip

你可能感兴趣的:(Linux,上网)