Puphpet / Vagrant: Não foi possível acessar a VM LAMP com endereço IP

Usei o Puphpet.com para implantar uma máquina local de desenvolvimento Ubuntu 16.04 LAMP com o VirtualBox 5.1.24. Atualizei / etc / hosts com o endereço IP da VM (192.168.56.101).

$ cat /etc/hosts

127.0.0.1   localhost
127.0.1.1   flippy
192.168.56.101  dev.mysite.com

# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

Posso fazer o SSH na VM, mas não consigo acessá-lo via endereço IP (192.168.56.101) nem nome de domínio.

O ping falha:

$ ping 192.168.56.101

PING 192.168.56.101 (192.168.56.101) 56(84) bytes of data.
^C
--- 192.168.56.101 ping statistics ---
164 packets transmitted, 0 received, 100% packet loss, time 166895ms

E o enrolamento falha:

$ curl -v 192.168.56.101

* Rebuilt URL to: 192.168.56.101/
*   Trying 192.168.56.101...
* connect to 192.168.56.101 port 80 failed: Connection timed out
* Failed to connect to 192.168.56.101 port 80: Connection timed out
* Closing connection 0
curl: (7) Failed to connect to 192.168.56.101 port 80: Connection timed out

Além dissonetstat -rn na máquina host não mostra uma rota para o endereço IP da VM:

$ netstat -rn

Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
0.0.0.0         192.168.0.1     0.0.0.0         UG        0 0          0 wlp1s0
169.254.0.0     0.0.0.0         255.255.0.0     U         0 0          0 wlp1s0
192.168.0.0     0.0.0.0         255.255.255.0   U         0 0          0 wlp1s0

O que mais posso verificar?

questionAnswers(1)

yourAnswerToTheQuestion