I can ping to my physical Linux box which is 192.168.0.10 it is directly connected to my internet route (192.168.0.1), but from my physical linux machine I can't ping 192.168
[root@localhost ~]# ip route
192.168.72.0/24 dev eth0 proto kernel scope link src 192.168.72.143
default via 192.168.72.2 dev eth0
[root@localhost ~]# netstat -rn
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
192.168.72.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
0.0.0.0 192.168.72.2 0.0.0.0 UG 0 0 0 eth0
[root@localhost ~]# ping 192.168.0.10
PING 192.168.0.10 (192.168.0.10) 56(84) bytes of data.
64 bytes from 192.168.0.10: icmp_seq=1 ttl=128 time=5.12 ms
64 bytes from 192.168.0.10: icmp_seq=2 ttl=128 time=2.53 ms
64 bytes from 192.168.0.10: icmp_seq=3 ttl=128 time=2.50 ms
^C
--- 192.168.0.10 ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2546ms
rtt min/avg/max/mdev = 2.506/3.388/5.124/1.228 ms
Physical machine output
[root@localhost(phy) ~]#ip route
192.168.0.0/24 dev eth0 proto kernel scope link src 192.168.0.10 metric 1
192.168.122.0/24 dev virbr0 proto kernel scope link src 192.168.122.1
default via 192.168.0.1 dev eth0 proto static
[root@localhost (phy)~]# netstat -rn
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
192.168.0.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
192.168.122.0 0.0.0.0 255.255.255.0 U 0 0 0 virbr0
0.0.0.0 192.168.0.1 0.0.0.0 UG 0 0 0 eth0
Isn't it suppose to work? What am I doing wrong here?
ASKER