这篇文章主要介绍“proxychains-ng代理命令行怎么用”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“proxychains-ng代理命令行怎么用”文章能帮助大家解决问题。
首先下载 proxychains-ng(也许会很慢,可以网上搜一下设置 brew 镜像,然后下载速度就会快一点):
brew install proxychains-ng
使用 proxychains-ng 进行代理,例如 git clone:
procychains4 git clone https://github.com/facebook/react.git
在使用了 proxychains-ng 后终端的输出中,可以看到第一句 log 为:
[proxychains] config file found: /usr/local/etc/proxychains.conf
我们可以编辑 proxychains.conf 文件,将代理加入 [ProxyList] 中。例如:
[ProxyList]socks5 127.0.0.1 1234http 127.0.0.1 4321
编辑终端的 rc 文件(例如 .zshrc),添加 proxuchains4 的 alias:
alias pc="proxychains4"
退出保存,执行 source .zshrc 使别名生效。之后你就可以这样使用 procychains4:
pc git clone https://github.com/facebook/react.git
可以发现下载速度加快了很多。
关于“proxychains-ng代理命令行怎么用”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注编程网行业资讯频道,小编每天都会为大家更新不同的知识点。