Packet loss between two specific VMs

hadooplocal-area-networknetworkingpacketlossping

I am experiencing some high-percentage packet loss (more than 70%) between two specific VMs in a local network, in a remote cluster (I have no physical access to it).

One machine is used as a hadoop master and the other as a hadoop slave.
The strange thing is that when I ping any other machine from/to any of these two machines, I get no packet loss. Network configurations for all the slave nodes are identical.

Best Answer

It seems that the problem is fixed. Here are the two things I did:

  1. I changed the etc/network/interfaces file (in Ubuntu) and added my local network with a static IP for my machine, like this:
auto eth1
iface eth1 inet static
address 192.168.0.18
netmask 255.255.255.0
gateway 192.168.0.1`
  1. The new IP of my VM (192.168.0.18) is different than the previous one (192.168.0.2).

Any comments on how did that solve my problem?

Related Topic