Motivation: Making the Systems Engineers life easier.

VMQ Network Adapter for Hyper-V Hosts

VMQ Network Adapter for Hyper-V Hosts

Home Forums VMQ Network Adapter for Hyper-V Hosts

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #496

    If you are using Blade Servers as Hyper-V Hosts, that 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

Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.