Unable to obtain a DHCP lease on interface vmk2.vobd.log at /var/log/ contain entries such as:[esx.problem.dhclient.lease.none] Unable to obtain a DHCP lease on interface vmkX[vob.user.dhclient.lease.none] Could not get a lease on interface vmkXThis issue occurs when the DHCP DORA (Discover, Offer, Request, Acknowledge) process fails between the ESXi host and the DHCP server . Common triggers include:
Review the following logs on the affected ESXi host to confirm the DHCP failure:
No DHCPOFFERS received or repeated DHCPREQUEST attempts without an acknowledgment .vob.user.dhclient.lease.none events.Ensure that UDP ports 67 and 68 are permitted across the entire data path, including the physical network infrastructure and any software firewalls.
Use the pktcap-uw tool on the ESXi host to determine if DHCP Discover packets are leaving the host and if Offer packets are returning:
pktcap-uw --uplink <vmnic_name> --capture UplinkSndKernel,UplinkRcvKernel --ip --udpport 67 -o - | tcpdump-uw -ner -
If the interface is stuck without an IP, attempt to reset the physical link to trigger a new DHCP request:
esxcli network nic down -n vmnic#
esxcli network nic up -n vmnic#For critical infrastructure traffic such as NFS storage or Host Management, it is highly recommended to use Static IP addresses instead of DHCP to prevent service disruptions during network or DHCP server failures .