完美解决wsl2无法ping宿主机,也无法ping外网的问题
背景:wsl2 通过 NAT 方式与宿主机共享网络,这就导致 wsl2 的网络需要经过一些配置才能访问外网,尤其是涉及到梯子时。为了避免各种麻烦的网络配置问题,建议使用镜像网络模式配置 wsl2。
本文介绍如何使用镜像模式配置 WSL2。
前提条件:
宿主机可以上网宿主机打开了对 WSL2 的防火墙设置。(可参考其它文章)下面是将 WSL2 配置成镜像模式的步骤。
1. 在 Windows 的文件资源管理器中的文件路径中输入 %USERPROFILE%
在此目录下新建 .wslconfig
文件,然后文件的内容如下:
# Settings apply across all Linux distros running on WSL 2[wsl2]# Limits VM memory to use no more than 4 GB, this can be set as whole numbers using GB or MBmemory=8GB# Sets the VM to use two virtual processorsprocessors=8[experimental]autoMemoryReclaim=gradual # 开启自动回收内存,可在 gradual, dropcache, disabled 之间选择networkingMode=mirrored # 开启镜像网络dnsTunneling=true # 开启 DNS Tunnelingfirewall=true # 开启 Windows 防火墙autoProxy=true # 开启自动同步代理sparseVhd=true # 开启自动释放 WSL2 虚拟硬盘空间
2. 重新启动 WSL
在终端中输入命令:wsl --shutdown
,然后输入wsl
。应该就能 ping 通百度了。
码字不易,请各位道友点赞、收藏加关注,追番不迷路啊,哈哈哈。