ESXi Hosts Intermittently Show "Not Responding" in vCenter Despite Remaining Pingable and VMs Staying Operational
book
Article ID: 382385
calendar_today
Updated On:
Products
VMware vCenter Server
Issue/Introduction
ESXi hosts periodically disconnect from vCenter Server and show as "Not Responding" while:
- Hosts remain pingable from vCenter
- Virtual machines continue running
- Host management interface becomes inaccessible
- vSphere Client shows connectivity errors
- Storage plugin loading fails with "URL unreachable" errors
Environment
- VMware vCenter Server
- VMware ESXi
- Hosts and vCenter in same subnet
- Multiple affected hosts in cluster
Cause
Network path interruption between vCenter Server and ESXi hosts, typically caused by:
- Firewall rules blocking management traffic
- Network segmentation
- Port blocking
- MTU mismatches
- Network hardware issues
Resolution
- Verify basic connectivity:
- Ping ESXi hosts from vCenter using both FQDN and IP
- Test DNS resolution in both directions
- Run `vmkping` tests from hosts to vCenter
Test basic connectivity
vmkping -I vmk0 vcenter-ip
# Test with specific interface and regular MTU
vmkping -I vmk0 vcenter-ip -d -s 1472
# For hosts with jumbo frames configured
# Start with standard size then increase gradually
vmkping -I vmk0 vcenter-ip -d -s 1472
vmkping -I vmk0 vcenter-ip -d -s 4972
vmkping -I vmk0 vcenter-ip -d -s 8972
# Testing other management interfaces if present
vmkping -I vmk1 vcenter-ip -d -s 1472
vmkping -I vmk2 vcenter-ip -d -s 1472
# Testing with different packet counts to check for intermittent drops
vmkping -I vmk0 vcenter-ip -c 100
- Verify hosts can reach default gateway
- Check management traffic:
tcpdump src <host-ip> and port 902 -nn
Verify heartbeat packets are flowing between host and vCenter
- Test required ports are open:
- TCP/UDP 902: Agent communication
- TCP 443: Secure communication
- TCP 8043: Host management
- TCP 8080: Web services
- TCP 5988/5989: CIM server
- Monitor vpxd.log for network-related errors:
journalctl -b | grep -i "HostSyncFailed"
- If network path issues identified:
- Work with network team to verify firewall rules
- Check for network device issues
- Verify MTU consistency across path
- Test bi-directional connectivity
- Remove any blocking rules
- If network verification complete but issues persist:
- Review host services status
- Check vpxa service logs
- Verify certificates
- Test alternate network paths
Feedback
thumb_up
Yes
thumb_down
No