Page 1 of 1

Upgrade to Big Sur now no network connectivity

Posted: 17. Nov 2020, 19:33
by Starion
Upgraded to Big Sur this week. Launched VirtualBox 6.1.16 and now I have an IP conflict in Windows that I cannot fix. IP address in Windows always shows self-assigned. Interface is set for DHCP.

No changes were made to the VirtualBox networking configuration from Catalina.

On another annoying note, VirtualBox is back to not remembering the startup window location. It always reverts back to my primary monitor. Arrrrgh. I thought this was fixed and had been working fine through the last couple of versions of VirtualBox.

{Not sure why this post was moved to "VirtualBox on Mac OS X pre-releases". Big Sur is no longer a pre-release.}

Re: Upgrade to Big Sur now no network connectivity

Posted: 3. Dec 2020, 00:47
by Starion
A month since I posted this, still no network connectivity and apparently no fix from VirtualBox.

Re: Upgrade to Big Sur now no network connectivity

Posted: 3. Dec 2020, 01:34
by Starion
More information. Networking works set to NAT. Bridged adapter is what is not working anymore.

Re: Upgrade to Big Sur now no network connectivity

Posted: 12. Feb 2021, 20:46
by NuuKeM
See post # 100751 labeled "Big Sur: VB works but no internet connection Win10" (I'm not able to post links yet)

In Windows guest, open a command prompt and run the following command:

Code: Select all

netsh interface ipv4 show inter
A similar list will be displayed:

Code: Select all

Idx  Met        MTU          State          Name
---  ---------- ----------   ------------   ---------------------------
1    50         4294967295   connected      Loopback Pseudo-Interface 1
11   10         1500         connected      Local Area Connection
Copy index number (Idx #11 in my case) of the adapter and use it in the following code:

Code: Select all

netsh interface ipv4 set interface 11 dadtransmits=0 store=persistent
Reboot and problem solved.

Apparently, per web-searching "netsh dadtransmits=0", this solution is part of disabling Windows' IP autoconfiguration, which among other possible things sets the IP address to an APIPA address if there is no DHCP server on the network.

Re: Upgrade to Big Sur now no network connectivity

Posted: 10. Mar 2021, 21:02
by Starion
This appears to be the same solution (via another method) that someone else mentioned. Setting the MAC address of the virtual box interface to that of your host's wifi or LAN adapter.

Re: Upgrade to Big Sur now no network connectivity

Posted: 14. Mar 2021, 21:14
by mpack
Starion wrote:Setting the MAC address of the virtual box interface to that of your host's wifi or LAN adapter.
That would be illegal. You can't have two PCs on a switch (bridged is just a software switch) with the same MAC address. At best only one of the conflicting nodes will have comms. At worst it will mess up the network.

Re: Upgrade to Big Sur now no network connectivity

Posted: 15. Mar 2021, 03:39
by Starion
That would be illegal. You can't have two PCs on a switch (bridged is just a software switch) with the same MAC address. At best only one of the conflicting nodes will have comms. At worst it will mess up the network.
It is the only solution that has worked so far. And it has not "messed up the network".

Re: Upgrade to Big Sur now no network connectivity

Posted: 5. Apr 2021, 20:33
by Starion
Still no official solution to this. Posted solution does not work. MAC address change does.

Re: Upgrade to Big Sur now no network connectivity

Posted: 11. Apr 2021, 06:41
by MarcinR
I'll add another datapoint to this issue.

I've been successfully using Bridged networking on OS X Catalina on with a number of 6.0 and 6.1 versions, up to 6.1.18. It worked great on a Windows 10 guest. I upgraded my laptop to Big Sur, and bridged networking no longer works, in precisely the same way that many others have described. The `dadtransmits=0` trick didn't work for me. Sadly, I need bridged mode since I'm connecting to a device which requires promiscuous mode for some UDP shenanigans.

I have one other computer still on Catalina. I copied my VM over to that one, and bridged networking works fine, so the guest OS isn't the issue.