I'm getting this error when I try to ping 8.8.8.8 from my Virtual Machine:
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
From 172.30.8.135: icmp_seq=1 Redirect Host(New nexthop: 172.30.8.254)
From 172.30.8.135: icmp_seq=2 Redirect Host(New nexthop: 172.30.8.254)
When I try wget http://www.google.com I get failed: connection timed out.
This is the output of route -n:
Destination Gateway Genmask Flags Metric Ref Use Iface
172.30.8.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
0.0.0.0 172.30.8.135 0.0.0.0 UG 0 100 0 eth0
This is how my network looks like: I have created br0 as a bridge over eth0 to run this VM. The host has this IP 172.30.8.135.
The host has access to internet through eth0 and this is the output of route inside the host:
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
172.30.8.0 0.0.0.0 255.255.255.0 U 0 0 0 br0
0.0.0.0 172.30.8.254 0.0.0.0 UG 100 0 0 br0
Thanks in advance for any clues on this!