经常用的代理
ubuntu(kali同理)
安装proxychain
1 | apt-get install proxychains |
或
1 | apt-get install proxychains4 |
进入设置,一般/etc/proxychain.conf
或/etc/proxychains4.conf
,直接拉到最后一行,添加代码:
1 | socks5 192.168.233.1 10808 |
使用方法为:proxychains + 命令
,如proxychains git clone https://github.com/DasSecurity-Labs/AoiAWD.git
windows的powershell
1 | netsh winhttp set proxy 127.0.0.1:10809 #使用代理 |
gitbash
1 | git config --global https.proxy http://127.0.0.1:10809 |
但当git clone ssh通道时,无法通过该代理,需要修改一下文件:
~/.ssh/config
(没有就创建一个)
改.gitconfig和–global是一样的
windows
1 | Host github.com |
或
1 | Host github.com |
ubuntu
1 | Host github.com |
或
1 | Host github.com |
参考链接:
https://ericclose.github.io/git-proxy-config.html
- 本文作者: Sn1pEr
- 本文链接: https://sn1per-ssd.github.io/2021/03/23/代理/
- 版权声明: 本博客所有文章除特别声明外,均采用 MIT 许可协议。转载请注明出处!