在home目录编写start-proxy.sh文件
#!/bin/bash
host_ip=$(cat /etc/resolv.conf |grep "nameserver" |cut -f 2 -d " ")
export ALL_PROXY="http://$host_ip:10809"
其中10809为宿主机的代理端口,同时不要忘了宿主机的代理设置成允许局域网连接
然后打开新wsl的shell需要连接代理时,输入命令source start-proxy
即可
在home目录编写start-proxy.sh文件
#!/bin/bash
host_ip=$(cat /etc/resolv.conf |grep "nameserver" |cut -f 2 -d " ")
export ALL_PROXY="http://$host_ip:10809"
其中10809为宿主机的代理端口,同时不要忘了宿主机的代理设置成允许局域网连接
然后打开新wsl的shell需要连接代理时,输入命令source start-proxy
即可
喜欢你,始于颜值,陷于才华,忠于人品