1、《[debian_ubuntu 配置 sock/socks5h/http/https 代理](https://www.cnblogs.com/yucloud/p/ubuntu_set_proxy.html)》 2、《[记一次 Visual Studio 启动 WSL 远程调试的方法](https://www.cnblogs.com/ACDIV/p/17369166.html)》 3、《[[VS Code] 附加到 Docker 容器中调试 .NET 程序](https://w...
git config –global https.proxyhttps://proxy_host:proxy_port “` 其中,`proxy_host:proxy_port`替换为你实际使用的代理服务器地址和端口号。如果代理服务器需要用户名和密码验证,可以使用以下命令进行配置: “` git config –global http.proxyhttp://username:password@proxy_host:proxy_port git config –gl...
unset http_proxy; \ unset all_proxy; \ unset ALL_PROXY;' 注意https_proxy处应为http://${hostip}:7890,否则会导致curl时OpenSSL SSL_connect: SSL_ERROR_SYSCALL的问题。然后,在终端运行命令setproxy就可以为当前终端设置网络了。 相关配置: 此时可以用wget测试。如果克隆https链接报错: GnuTLS recv error ...
WSL2 默认使用 NAT 网络,因此 DNS 服务器执行 Windows,在/etc/resolv.conf中可以找到 DNS 服务器。 之后打开 Windows Calsh 的局域网连接,并找到端口。 server=`awk '$1 == "nameserver" {print $2}' /etc/resolv.conf` port=7897 export http_proxy="http://$server:$port" export https_proxy="http...
非常感谢原作者 https://www.cnblogs.com/tuilk/p/16287472.html 在Windows下配置WSL2代理 第一步 打开猫猫中的允许互联网连接 第二步 打开Windows Defender 防火墙, 选择允许应用或功能通过 Windows Defender 防火墙 第三步 配置WSL2代理 新建proxy.sh文件,内容如下: ...
export http_proxy=http://127.0.0.1:7890 export https_proxy=\$http_proxy echo -e "终端代理已开启。" } function proxy_off(){ unset http_proxy https_proxy echo -e "终端代理已关闭。" } EOF source~/.bash_profile proxy_on 1|0注意!!!要把上面127.0.0.1换成刚才查的IP(172.21.32.1),以图为...
export http_proxy="http://${hostip}:7890"; 注意修改成你的端口 如果是 socket5 协议的话 export http_proxy="socks5://${hostip}:7890" export https_proxy="socks5://${hostip}:7890" 如果端口一样就可以合并成一句话,http 的同理 export all_proxy="socks5://${hostip}:7890" ...
exporthttp_proxy="http://[从resolv.conf找到的IP地址]:7890"exporthttps_proxy="http://[从resolv....
%h %p,g" ~/.ssh/config' alias unsetp='unset https_proxy; \ unset http_proxy; \ ...
export https_proxy="http://127.0.0.1:41091"; export http_proxy="http://127.0.0.1:41091"; } stopProxy(){ unset https_proxy; unset http_proxy; } source ~/.zshrc # 开启代理 startProxy 附ping端口 sudo apt install tcptraceroute sudo wget http://www.vdberg.org/~richard/tcpping -O /usr...