标题五个字

一、配置clash

找到General > Allow LAN,打开开关。

二、配置防火墙

打开控制面板,找到系统和安全 > Windows Defender 防火墙 > 允许应用通过 Windows 防火墙,勾选上所有Clash相关的应用,包括但不限于Clash for Windows、clash-win64等。

三、配置WLS2

1、创建.proxy文件,并且添加以下内容

1
2
3
4
5
#!/bin/bash
hostip=$(cat /etc/resolv.conf |grep -oP '(?<=nameserver\ ).*')
export https_proxy="http://${hostip}:7890"
export http_proxy="http://${hostip}:7890"
export all_proxy="socks5://${hostip}:7890"

2、编辑.bashrc.zshrc文件,在文末添加一下内容

1
source ~/.proxy

四、测试

1
wget www.google.com
1
2
3
4
5
6
7
8
9
--2024-06-07 23:35:46--  http://www.google.com/
Connecting to 172.25.16.1:7890... connected.
Proxy request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: ‘index.html’

index.html [ <=> ] 20.50K --.-KB/s in 0.02s

2024-06-07 23:35:46 (1.07 MB/s) - ‘index.html’ saved [20989]