Motivation: Making the Systems Engineers life easier.

VMQ Network Adapter for Hyper-V Hosts

Hyper-V

VMQ Network Adapter for Hyper-V Hosts

If you are using Blade Servers as Hyper-V Hosts, which means you are using shared network cards. In a Hyper-V Cluster if you see Live Migration and Cluster Network are failed then disable VMQ for Network Adapter.

 

To View the Network Adapter Details:

Get-NetAdapterVmq

 

To disable the VMQ for Network Adapter

Set-NetAdapterVmq -Name “Ethernet” -Enabled $False

Set-NetAdapterVmq -Name “Ethernet 2” -Enabled $False

 

To enable the VMQ for Network Adapter

Set-NetAdapterVmq -Name “Ethernet” -Enabled $True

Set-NetAdapterVmq -Name “Ethernet 2” -Enabled $True

Leave your thought here

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Topics