Hi friends.
I’m trying to start a box but even though the Network adapters are added, the OS doesn’t get any IP. Does anyone know what’s going on?
The box is self-built, based on Ubuntu 22.04.3 server.
Log output:
vagrant up
Bringing machine 'default' up with 'vmware_desktop' provider...
==> default: Cloning VMware VM: 'ubuntu-22.04-vmware'. This can take some time...
==> default: Verifying vmnet devices are healthy...
==> default: Preparing network adapters...
==> default: Starting the VMware VM...
==> default: Waiting for the VM to receive an address...
Network connections:
VM settings:
Vagrantfile:
Vagrant.configure(“2”) do |config|
config.vm.box = “ubuntu-22.04-vmware”
config.vm.network “private_network”, type: “dhcp”
config.vm.provider “vmware_desktop” do |v|
v.vmx[“memsize”] = “2048”
v.vmx[“numvcpus”] = “2”
v.gui = true
end
end