vMotion VMKernel Missing

Introduction

Recently, DRS was failing to vMotion virtual machines from a specific ESXi server. The error message was:

The vMotion interface is not configured (or is misconfigured) on the Source host “esxi.test.com”

error

Checked the VMKernels on the dvSwitch and there was only one management VMKernel. vMotion VMKernel was disappeared.

To identify the issue, I’ve tried:

  • Adding a new vMotion VMKernel
  • esxcli to check the status of VMKernels

Identification

First attempt was to add a vMotion VMKernel to dvSwitch. However, got an error message saying the VMKernel already exists.

error_1

This was telling me that somehow, the vMotion VMKernel is hidden. Next step performed was to use esxcli to identify the issue.

Running esxcli network ip interface list, gave me an interesting output. vmk1 for vMotion was disabled.

interface_list

Resolution

The output above gave me a clear idea on what’s mis-configured. The first thing I tried was to enable vmk1 by running esxcli network ip interface set  -e true -i vmk1. But, it outputted an error message saying:

Sysinfo error on operation returned status: Operation not permitted. Please see the VMKernel log for detailed error information

Enabling the VMKernel didn’t work as the ESXi thought vMotion VMKernel was busy. So, the next configuration I tried was to delete the VMKernel, esxcli network ip interface remove -i vmk1. Surprisingly, it didn’t cause any problems! Listed VMKerenls and confirmed that vMotion VMKernel was removed.

interface_list_1

Added a new vMotion VMKernel and DRS was able to execute vMotion virtual machines successfully.

Wrap-Up

Unfortunately, I wasn’t able to find the root cause of this problem. In future if I face this issue again, I will update this post.

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s