WSL2 访问 Windows 代理
NEW : https://yingming006.cn/wsl-proxy-by-clash/
获取 WSL2 IP 地址
在 WSL2 中,要访问 Windows 上运行的网络应用(例如在 Windows 上运行的代理软件、SQL 服务器等),需要使用 WSL2 的 IP 地址,而不是 localhost
。
WSL2 的 IP 地址保存在 /etc/resolv.conf
文件中的 nameserver
,可以通过以下命令获取:
cat /etc/resolv.conf|grep nameserver|awk '{print $2}' |
设置环境变量
这里拿 v2ray 举例,默认 sock5 的监听端口为 10808
export PROXY_PORT=10808 |