この問題は基本的に、ホスト WiFi アダプター (wifi ルーターの DHCP サーバーによる) とゲスト インターフェイス (Nat ネットワーク下の VirtualBox DHCP サーバーによる) の両方に同じ IP アドレスが割り当てられていることが原因です。
統合DHCPサーバーに関するVirtualBoxのドキュメントからVirtualBox NATエンジンの微調整:
In NAT mode, the guest network interface is assigned to the IPv4 range 10.0.x.0/24
by default where x corresponds to the instance of the NAT interface +2. So x is 2
when there is only one NAT instance active. In that case the guest is assigned to the
address 10.0.2.15, the gateway is set to 10.0.2.2 and the name server can be found at
10.0.2.3.
10.0.2.0/24
ホストの WiFi アダプターの IP アドレスを見ると、それに割り当てられているアドレスもネットワーク範囲からのものであることがわかります。
ホストとゲストのアドレスが同じサブネットからのものであるという事実により、VirtualBox の Nat ドライバーが混乱するため、これが問題の原因です。
これを修正するには、VBoxManage コマンドを使用して、VirtualBox DHCP サーバーによって提供されるサブネットを変更します (VM の電源がオフになっている間)。
Vboxmanage modifyvm VMName --natnet1 "192.168/16"
そして、あなたは行ってもいいです。