Below is the error:
The specified host network collides with a non-hostonly network!
This will cause your specified IP to be inaccessible. Please change
the IP or name of your host only network so that it no longer matches that of
a bridged or non-hostonly network.
Bridged Network Address: '192.168.1.0'
Host-only Network 'en0: Wi-Fi (Wireless)': '192.168.1.0'
after running vagrant up command from folder with below config in ../utils/vagrant_defaults.rb:
GUI = false
RAM = 512
DOMAIN = ".prom.inet"
NETWORK = "192.168.1."
NETMASK = "255.255.255.0"
BOX = 'bento/ubuntu-18.04'
On my laptop ip addr gives below ip:
$ ip addr
en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
inet 192.168.1.64/24 brd 192.168.1.255 en0
vagrant up launches 3 VM's using Oracle virtual box in the virtual network within laptop in subnet 192.168.1.0(because my laptop is in that subnet)
What is host network?
What is non-host network?
How to resolve this error? Why cannot host IP network match with non-host network?