VMware vSphere ESXi
VMware vCenter Server
The intermittent network drops are caused by a duplicate MAC address conflict on the physical network fabric. A virtual machine was cloned from the existing virtual machine and inherited the exact same manual MAC address . This duplicate assignment causes MAC flapping on the upstream physical switches, resulting in packets being routed to the incorrect destination physical switch port.
Identify the cloned virtual machine that shares the duplicate MAC address.
# 1. Connect to vCenter ServerConnect-VIServer -Server "your-vcenter-server" -User "username" -Password "password"
# 2. Define the Cluster$clusterName = "YourClusterName"
# 3. Retrieve VM Name, Network Adapter, and MAC AddressGet-Cluster -Name $clusterName | Get-VM | Get-NetworkAdapter | Select-Object @{N="VMName";E={$_.Parent.Name}}, Name, MacAddress | Sort-Object VMName
# 4. Disconnect from vCenterDisconnect-VIServer -Server * -Confirm:$false
Disconnect the virtual network interface card (vNIC) of the cloned virtual machine from the network to immediately stabilize the physical switch MAC tables.
Edit the hardware settings of the cloned virtual machine (VM must be in powered off state).
Change the vNIC MAC address assignment from "Manual" to "Automatic" to allow vCenter Server to generate a unique MAC address from its pool, or assign a valid, unique manual MAC address.
Reconnect the vNIC to the network.
Verify that RDP and ICMP connectivity to the production virtual machine is stable and packet drops have ceased.