Máquina virtual com Ubuntu 16.04 não consegue se conectar à internet

Máquina virtual com Ubuntu 16.04 não consegue se conectar à internet

Só descobri esse problema recentemente, aparentemente todas as minhas VMs do Ubuntu pararam de acessar a Internet. O host é o Windows 10, conectado via Ethernet ou WiFi, VMware Workstation 12.5.6, a configuração de rede no VMware é NAT. Minhas VMs Ubuntu precisam de um endereço estático, não consigo usar DHCP, aqui está a saída do ifconfig:

docker0   Link encap:Ethernet  HWaddr 02:42:f6:c9:67:3d  
          inet addr:172.17.0.1  Bcast:172.17.255.255  Mask:255.255.0.0
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
ens33     Link encap:Ethernet  HWaddr 00:0c:29:91:eb:b8  
          inet addr:192.168.72.179  Bcast:192.168.72.255  Mask:255.255.255.0
          inet6 addr: fe80::20c:29ff:fe91:ebb8/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:564 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:39862 (39.8 KB)
lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:744 errors:0 dropped:0 overruns:0 frame:0
          TX packets:744 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:64884 (64.8 KB)  TX bytes:64884 (64.8 KB)
and this is the content of /etc/network/interfaces:
# The primary network interface
auto ens33
iface ens33 inet static
address 192.168.72.179
netmask 255.255.255.0
gateway 192.168.72.2
dns-nameservers 208.67.222.222, 208.67.222.220, 8.8.8.8
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback

Tentei fazer ping em 8.8.8.8, o host de destino está inacessível. Mais alguma coisa que eu possa verificar?

informação relacionada