Guys, Has anyone played with vagrant on Debian Buster using libvirt as the provider? I can do a 'vagrant up' of a CentOS8 box, but it never finishes since it says it's just waiting for a network. But I have a virbr1 running with 192.168.121.0/24 subnet, and I can ping the new vagrant box at 192.168.121.18 without a problem. I can even fire up a VNC viewer and connect to the console and see that it's up and it's gotten an IP address. All I'm doing is: mkdir /scatch/vagrant vagrant box add centos/7 --provider=libvirt vagrant box add centos/8 --provider=libvirt cd /scratch/vagrant mkdir centos8 cd centos8 vagrant init centos/8 vagrant up I've got dnsmasq running on my server, and it looks to be giving out IPs on that subnet properly. Stupid VM just sits at: root@quad:/scratch/vagrant/centos8# vagrant reload ==> default: Halting domain... ==> default: Starting domain. ==> default: Waiting for domain to get an IP address... And then nothing. The console is fine, I can VNC into it and login as the root user with the password of 'vagrant' and see that the network is up, etc. Going nuts trying to make this work. John
John> Has anyone played with vagrant on Debian Buster using libvirt as John> the provider? I can do a 'vagrant up' of a CentOS8 box, but it John> never finishes since it says it's just waiting for a network. Ok, just to give some more details, I've got vagrant working now on my main desktop box, and I think the problem is that I already have a libvirt install on my server, with a Bridged Network setup. So having a bridge setup confuses Vagrant and how it needs to be setup. Haven't gotten it working yet, but I have a better idea of where to look. John
participants (1)
-
John Stoffel