I created 2 ubuntu VMs on Win 7 host.
Adapter 1 as NAT
Adapter 2 as Host-only
I am able to connect to the internet on both VMs and also able to ping 192.168.56.1 (Windows host)
but when I try to ping my other VM, I receive duplicate (DUP!) ping response.
Code: Select all
root@xhase-VirtualBox:~# ping 192.168.56.143
PING 192.168.56.143 (192.168.56.143) 56(84) bytes of data.
64 bytes from 192.168.56.143: icmp_req=1 ttl=64 time=1.66 ms
64 bytes from 192.168.56.143: icmp_req=1 ttl=63 time=2.21 ms (DUP!)
From 192.168.56.1: icmp_seq=2 Redirect Network(New nexthop: 192.168.56.143)
64 bytes from 192.168.56.143: icmp_req=2 ttl=64 time=0.688 ms
64 bytes from 192.168.56.143: icmp_req=2 ttl=63 time=0.701 ms (DUP!)
64 bytes from 192.168.56.143: icmp_req=2 ttl=64 time=0.717 ms (DUP!)
64 bytes from 192.168.56.143: icmp_req=2 ttl=63 time=0.731 ms (DUP!)I am able to ssh the VM. Also I need to host apache webserver on one of the guest and access it from host.
Can someone help me with setting up my network? or let me know the cause of issue I am facing with duplicate pings?
Thanks in advance.