Vagrant private_network can’t ping
When I create Vagrant virtual machine with private networking, I can’t ping to IP address of the VM. The only way to connect the VM is by using the “vagrant ssh” command. In my Vagrantfile, I had Vagrant.configure(“2”) do |config| config.vm.box = “bento/ubuntu-20.04” config.vm.network “private_network”, ip: “192.168.56.4” end To fix the problem, first verify you … Read more