Hi,
I have a strange thing
I create guest VM virtualbox ubuntu 14.04 lts computer, and can connect via ssh and ping it from host, but I can't ping to 8.8.8.8. first adapter defined as NAT and the second as Host-Only-Adapater
Can you help please? (I have the in addition problem with vagrant in other computer - I opened another issue)
netstat -rn
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
0.0.0.0 192.168.2.1 0.0.0.0 UG 0 0 0 eth1
10.0.2.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
192.168.2.0 0.0.0.0 255.255.255.0 U 0 0 0 eth1
ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet dhcp
auto eth1
iface eth1 inet static
address 192.168.2.3
gateway 192.168.2.1
netmask 255.255.255.0
network 192.168.2.0
broadcase 192.168.2.255