# This file was automatically generated by WSL. To stopautomatic generation of this file, add the following entry to /etc/wsl.conf:# [network]# generateResolvConf = falsenameserver 172.19.80.1 可以看到 DNS 服务器是172.19.80.1,通过环境变量ALL_PROXY配置代理: exportALL_PROXY="http://172.19.80.1...
要找到 Windows 的 IP 地址,可以利用 cat /etc/resolv.conf 命令在 Ubuntu 子系统中查看 DNS 服务器 IP。以 172.19.80.1 为例,通过设置环境变量 ALL_PROXY=:7890,即可完成 WSL2 中的代理配置。别忘了在 Windows 代理客户端上启用对本地局域网的请求权限。为了简化这一过程,可以编写一个 ba...
export ALL_PROXY="http://$host_ip:7890" 脚本通过cat /etc/resolv.conf来获取 DNS 服务器,也就是 Windows 的 IP,再将其中的 IP 部分截取出来,加上代理客户端的端口(我的是 7890,可以根据自己实际情况修改),使用 export 写入环境变量中。 脚本也可以从这里下载.proxyrc,使用时只需要source .proxyrc就可以...
automatic generationofthisfile,add the following entry to/etc/wsl.conf:#[network]# generateResolvConf=falsenameserver172.19.80.1 可以看到 DNS 服务器是 172.19.80.1,通过环境变量 ALL_PROXY 配置代理: 代码语言:javascript 复制 exportALL_PROXY="http://172.19.80.1:7890" 7890 是 Windows 上运行的代理客户...
exporthttp_proxy=http://ip:port # ip 就是上面获取到的,端口就是 clash 配置的exporthttps_proxy=https://ip:port # 同上 # 配置全部代理exportALL_PORXY=socks5://ip:port 配置完成后通过curl -v www.google.com来检验,如果输出如下,则说明开启成功 ...
export http_proxy=$ALL_PROXY 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文件最下方添加上述内容...
export all_proxy="sock5://192.168.112.1:7890" export ALL_PROXY="sock5://192.168.112.1:7890" 以及开启关闭WSL2中代理的简便方法: 它定义了两个命令setp和unsetp, 分别用于在命令行中开启和关闭代理, 非常实用. 如果您是用Clash之外的其他代理软件, 可以参考第一个参考文章. ...
export ALL_PROXY="socks5://$host_ip:port" # port,你的socks5代理的端口,在代理软件中查阅 1. 2. 3. 测试 使用curl测试 curl www.google.com 1. 通过https克隆仓库 git clone https://github.com/vim-airline/vim-airline.git 1. 或者其他网络相关的命令进行测试 ...
alias setss='export https_proxy="http://${hostip}:2333";export http_proxy="http://${hostip}:2333";export all_proxy="socks5://${hostip}:2333";' 第四步: WSL2的配置 以下方法引用自这里 ## 获取主机 IP ## 主机 IP 保存在 /etc/resolv.conf 中 wsl2需要通过这个ip访问windows ...
export http_proxy="socks5://${hostip}:7890" export https_proxy="socks5://${hostip}:7890" 如果端口一样就可以合并成一句话,http 的同理 export all_proxy="socks5://${hostip}:7890" 使用curl即可验证是否代理成功,如下有返回值说明成功 ...