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...
[Service] Environment="HTTP_PROXY=http://127.0.0.1:1080" Environment="HTTPS_PROXY=http://127.0.0.1:1080" Environment="NO_PROXY=localhost,127.0.0.1,docker-registry.example.com,.corp," 3、重启容器 sudo systemctl daemon-reload sudo systemctl restart docker ...
export hostip=$(cat /etc/resolv.conf |grep -oP '(?<=nameserver\ ).*') alias setss='export https_proxy="http://${hostip}:7890";export http_proxy="http://${hostip}:7890";export all_proxy="socks5://${hostip}:7890";' alias unsetss='unset all_proxy' 上面的脚本只影响当前会话 ...
在WSL2的终端内,运行以下命令:exporthttp_proxy="http://[从resolv.conf找到的IP地址]:7890"exporth...
export HTTPS_PROXY=$ALL_PROXY export https_proxy=$ALL_PROXY 1. 2. 3. 4. 5. 6. git也可以设置为使用代理 : git config --global proxy.https socks5://$windows_host:10808 1. 如果想要这些环境变量和设置每次启动终端都生效, 可以在~/.bashrc文件最下方添加上述内容 : ...
非常感谢原作者 https://www.cnblogs.com/tuilk/p/16287472.html 在Windows下配置WSL2代理 第一步 打开猫猫中的允许互联网连接 第二步 打开Windows Defender 防火墙, 选择允许应用或功能通过 Windows Defender 防火墙 第三步 配置WSL2代理 新建proxy.sh文件,内容如下: ...
export https_proxy="socks5://${hostip}:7890" 如果端口一样就可以合并成一句话,http 的同理 export all_proxy="socks5://${hostip}:7890" 使用curl即可验证是否代理成功,如下有返回值说明成功 ➜ ~curl google.com<HTML><HEAD><TITLE>301 Moved</TITLE></HEAD><BODY><H1>301 Moved</H1>The docum...
git config --global proxy.https socks5://$windows_host:10808 如果想要这些环境变量和设置每次启动终端都生效, 可以在~/.bashrc文件最下方添加上述内容 : exportwindows_host=`cat/etc/resolv.conf|grep nameserver|awk'{print $2}'`exportALL_PROXY=socks5://$windows_host:10808exportHTTP_PROXY=$ALL_PROXY...
exporthttp_proxy=http://ip:port # ip 就是上面获取到的,端口就是 clash 配置的exporthttps_proxy=https://ip:port # 同上 # 配置全部代理exportALL_PORXY=socks5://ip:port 配置完成后通过curl -v www.google.com来检验,如果输出如下,则说明开启成功 ...
export https_proxy=localhost:20172 # 上面是临时修改,永久修改可以吧这个加入/etc/profile 设置好后本地windows也能使用这个代理,完美解决wsl命令行和windows同时需要上google、github等外网的问题 3 其他 命令行美化 sudo apt install zsh #接下来自行安装oh-my-zsh,官网的脚本需要代理才能下载 ...