我希望能够从 wsl 2 ping 到流浪机器,问题是它们位于不同的网络中,我该怎么做。
如果使用 wsl 开关,它不会为我分配 ip。
帮助
您需要在 powershell 中执行此操作
Get-NetIPInterface | select ifIndex,InterfaceAlias,AddressFamily,ConnectionState,Forwarding | Sort-Object -Property IfIndex | Format-Table
并选择Wi-Fi和Ethernet IPv4的ifIndex,然后执行
Set-NetIPInterface -ifindex SWITCHIDWIFI -Forwarding Enabled
Set-NetIPInterface -ifindex SWITCHIDETHERNET -Forwarding Enabled
它应该工作