The guest operating system is responsible for broadcasting a Gratuitous ARP (GARP) upon the configuration of an IP address. This mitigates conflicts that arise when an IP address has been recently mapped to a disparate MAC address. Regardless of prior IP-to-MAC bindings, transmitting a GARP during IP assignment is an essential networking best practice to ensure upstream ARP caches are accurately updated.
Workaround:
From the impacted VM, that is the redeployed VM, you can manually run an '
arping' command to update all devices of the new IP/MAC mapping:
arping -U -I eth0 192.x.x.x -c 3
The IP address in the command should be the IP address of the redeployed VM and will result in a GARP being sent out with source and destination IP being the same and that of the newly deployed VM.