Can't ping from either machine.
So I've got 2 VMs that I'd like to use puppet with. One machine will run a puppet server (puppet), and the other has a puppet agent (app).
The problem I'm running into is that the 2 machines can't reach one another via a hostname. So puppet can't connect to app, and vice versa.
Now I can reach each machine if I put in their ips, but not with the hostname.
One thing I've tried changing with succes is each of these lines in my Vagrantfile:
app_config.vm.network :hostonly, "33.13.13.01"
changing that line to
192.168.1.11/12 then allows me to ping each machine via that custom hostname that gets added to /etc/hosts.
So I guess I've solved my problem, but I'd like to know why it works with a 192.XX address and not the 33.XX one.