You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On macOS hosts, choose the Host-Only Network option when configuring a network adapter.
The Host-Only Adapter option is provided for legacy support.
Hosts running recent macOS versions do not support host-only adapters
This is what the current driver uses: VBoxManage list hostonlyifs
The other alternative is hostonlynets, network name not interface name.
These adapters are replaced by host-only networks, which define a network mask and an IP address range,
where the host network interface receives the lowest address in the range.
So this new option needs to query for the actual IP address received...
The text was updated successfully, but these errors were encountered:
afbjorklund
changed the title
Add support for Host-only network to VirtualBox, to replace Host-only adapter
Add support for Host-only network to VirtualBox
Sep 29, 2024
Starting with macOS 13, the VirtualBox network options changed
https://www.virtualbox.org/manual/topics/networkingdetails.html#network_hostonly
This is what the current driver uses:
VBoxManage list hostonlyifs
The other alternative is
hostonlynets
, network name not interface name.So this new option needs to query for the actual IP address received...
https://github.com/minikube-machine/machine/blob/0.16.2/drivers/virtualbox/virtualbox.go#L771
The text was updated successfully, but these errors were encountered: