alias unsetproxy='unset https_proxy; \ unset http_proxy; \ unset all_proxy; \ unset ALL_PROXY;' 注意https_proxy处应为http://${hostip}:7890,否则会导致curl时OpenSSL SSL_connect: SSL_ERROR_SYSCALL的问题。然后,在终端运行命令setproxy就可以为当前终端设置网络了。 相关配置: 此时可以用wget测试。...
/bin/bashhost_ip=$(cat/etc/resolv.conf |grep"nameserver"|cut-f 2 -d" ")exportALL_PROXY="http://$host_ip:7890" 脚本通过cat /etc/resolv.conf来获取 DNS 服务器,也就是 Windows 的 IP,再将其中的 IP 部分截取出来,加上代理客户端的端口(我的是 7890,可以根据自己实际情况修改),使用 export ...
在执行前,可先临时(重启 cmd 后失效)设置代理:# 设置 socks5 代理 set http_proxy=socks5://dl...
autoProxy=true Expected Behavior WSL to configure http and https proxy variables as stated here: WSL Troubleshoot When enabled, the following apply to proxy settings on your Linux distributions: The Linux environment variable, HTTP_PROXY, is set to the one or more HTTP proxies found installed in...
alias setss='export https_proxy="http://${hostip}:10809";export http_proxy="http://${hostip}:10809";export all_proxy="socks5://${hostip}:10808";' 然后每次打开ubuntu时,执行setss就可以走代理了 接下来安装nvm,来管理node版本:
export ALL_PROXY="http://172.19.80.1:7890" 7890 是 Windows 上运行的代理客户端的端口,记得要在 Windows 代理客户端上配置允许本地局域网请求。 一键配置脚本 将上面的过程写入一个 bash 脚本,可以轻松的实现一键配置代理: #!/bin/bash host_ip=$(cat /etc/resolv.conf |grep "nameserver" |cut -f 2...
exportALL_PROXY="http://127.0.0.1:8000" 但是WSL2 基于 Hyper-V 运行,导致 Linux 子系统和 Windows 在网络上是两台各自独立的机器,从 Linux 子系统访问 Windows 首先需要找到 Windows 的 IP。 02 — 配置WSL2 访问 Windows 上的代理 有两个关键步骤: ...
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" ...
proxywslzoterowsl2 UpdatedOct 3, 2024 Python pythoninthegrass/python_template It's dangerous to go alone pythonlinuxgraphqldockerflaskdjangorestjupyterterraformpoetrywslk8shacktoberfestfastapiplaywright-python UpdatedApr 25, 2024 Python OhYee/WSLenv ...
export ALL_PROXY="${PROXY_SOCKS5}" export all_proxy="${PROXY_SOCKS5}" proxy_git if [ ! $1 ]; then ip_ fi echo "Acquire::http::Proxy \"${PROXY_HTTP}\";" | sudo tee /etc/apt/apt.conf.d/proxy.conf >/dev/null 2>&1 ...