需求: 通过 WSL 访问主机 IP 网络
防火墙策略
PowerShell 执行:
New-NetFirewallRule -DisplayName "WSL" -Direction Inbound -InterfaceAlias "vEthernet (WSL)" -Action Allow
wsl 中查看宿主机 IP 方法
cat /etc/resolv.conf | grep nameserver | awk '{print $2}'
需求: 通过 WSL 访问主机 IP 网络
防火墙策略
PowerShell 执行:
New-NetFirewallRule -DisplayName "WSL" -Direction Inbound -InterfaceAlias "vEthernet (WSL)" -Action Allow
wsl 中查看宿主机 IP 方法
cat /etc/resolv.conf | grep nameserver | awk '{print $2}'