一、安装
切换到root用户编译安装proxychains-ng
git clone https://github.com/rofl0r/proxychains-ng.git
sudo su - root
cd /home/pi/proxychains-ng-master/
./configure
make && make install
二、添加配置
cp ./src/proxychains.conf /etc/proxychains.conf
vim /etc/proxychains.conf
# 将最后的 socks4 127.0.0.1 9095 改为 socks5 127.0.0.1 1080 (这里是你的代理服务器地址,我这边用了VPN客户端的本地ip及端口。
exit # 退出root用户
三、使用
在需要使用代理的命令前面加上proxychains4, 如下:
pi@raspberrypi:~/proxychains-ng-master $ curl ip.sb
113.xxx.xxx.xxx
pi@raspberrypi:~/proxychains-ng-master $ proxychains4 curl ip.sb
[proxychains] config file found: /etc/proxychains.conf
[proxychains] preloading /usr/local/lib/libproxychains4.so
[proxychains] DLL init: proxychains-ng 4.14
[proxychains] Strict chain ... 127.0.0.1:1080 ... ip.sb:80 ... OK
34.92.xxx.xxx
这台树莓派的端口映射出去,稍微操作一下,就是一台内网的梯子。非常方便。