One of our ESXi 5.1 hosts entered a disconnected state with reason unknown. When I logged into the console of the server and checked the network settings everything checked out. Then I went into the ESXi shell to see what the network interfaces looked like and here laid the problem… the management vmkernel interface was not enabled.
esxcli network ip interface list

If you need to see what IP address is assign to each vmk, run this command:
esxcli network ip interface ipv4 get

Okay, no big deal…. that is a easy fix! But when I tried to enable it I received a “Unable to kill DCUI” error.
esxcli network ip interface set -e true -i vmk0

I could not find any information about this error anywhere. With this production ESXi host disconnected and roughly 40 virtual machines still running on this server I admitted defeat and opened a support case with VMware.
The VMware Support Engineer referenced internal KB article 2052878 with the fix below:
First we need to find the processor ID of the DCUI.
ps | grep -i DCUI

Note: The number to the right of the Unable to kill DCUI error is NOT the PID. Use the command above
Now kill that PID, it will not return anything if successful.
kill -9 PID

This should now let you enable the vmk interface
esxcli network ip interface set -e true -i vmk0

Perform a interface list and that disabled vmk should be enabled. Check to see if your host is pingable again.
esxcli network ip interface list

If anyone else received this error, please comment with your scenario and results!