WSL2通过Clash使用Windows代理网上冲浪 发表于 2022-08-17 更新于 2023-11-01 分类于 WSL2 阅读次数: 1.允许Clash通过Windows防火墙 关于clash的全部打上勾。 2.打开Allow LAN 3.查看IP 也可以在WSL2中通过shell查看1cat /etc/resolv.conf 4.在WSL2设置代理12export http_proxy="http://172.22.176.1:7890" # 根据实际IP和端口修改地址export https_proxy="http://172.22.176.1:7890" 5.查看代理1env|grep -i proxy 6.测试 7.网上冲浪8.取消代理12unset http_proxyunset https_proxy