Windows OS Hub
  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux

 Windows OS Hub / Virtualization / Hyper-V / Poor Network Performance on Hyper-V VMs in Windows Server 2019

February 20, 2023

Poor Network Performance on Hyper-V VMs in Windows Server 2019

Several times I came across a situation when files were copied much slower from/to virtual machines on a Hyper-V host running Windows Server 2019 than in a VM of the same configuration on a host running Windows Server 2016. In some tests, the read/write speed over the network to VM on Windows Server 2019 is almost three times lower than that on WS2016 (copying over SMB, SSH/SCP was tested). In this article, I tried to describe several different methods to improve the network performance of Hyper-V virtual machines running on Windows Server 2019 (and the latest Windows 10 and 11 builds).

Receive Segment Coalescing (RSC) in the Hyper-V vSwitch

First of all, you should note the Receive Segment Coalescing (RSC) feature that appeared in Hyper-V on Windows Server 2019/2022 (and Windows 10 1809+). The Receive Segment Coalescing is used at the virtual switch level (vSwitch). RSC allows to reduce CPU load and increase network throughput by combining multiple TCP segments into larger ones. Network performance is improved because large segments are processed faster than many smaller ones.

In previous Hyper-V versions (Windows Server 2016/2012R2), only hardware Receive Segment Coalescing mode was supported at the NIC level.

If RSC support is enabled, it may result in extra network delay in some hardware configurations.

The issue occurs both in Windows Server 2019 Full GUI versions and in free Windows Hyper-V Server.

By default, RSC is enabled for all external vSwitches on Windows Server 2019.

You can check if RSC is enabled for virtual switches using the command:

Get-VMSwitch | Select-Object *RSC*

You can disable using RSC for IPv4 traffic on the client network adapter using the following command:

Disable-NetAdapterRsc -Name "Ethernet" -IPv4

Check if the copy speed in a Hyper-V VM has increased after disabling RSC. If the network speed has improved, you can disable RSC on the virtual switch the VM is connected to.

You can check your network throughput using the iperf tool.

To disable software RSC for a specific virtual switch, run the command:

Set-VMSwitch -Name vSwitchName -EnableSoftwareRsc $false

check if RSC is enable on hyper-v switch

You can enable/disable RSC on the fly, it won’t affect any active connections.

Or you can completely disable RSC on your Windows host:

netsh int tcp set global rsc=disabled

Virtual Machine Queue (VMQ) Mode in Network Adapter Driver

In some cases, if VMQ (Virtual Machine Queue) is enabled in a network adapter driver of a physical Hyper-V host, it may result in poor network performance in Hyper-V virtual machines. VMQ is a hardware feature and if it is not supported by your hardware but enabled in the driver, it can result in packet loss and increased network latency. The problem is typical to Broadcom Gigabit network adapters and occurs in all Hyper-V versions (Windows Server 2012 R2/2016/2019).

VMQ is designed to improve network performance by directly forwarding packets from a physical network adapter to virtual machines.

You can disable VMQ in the properties of your network adapter driver.

disable VMQ (Virtual Machine Queue) in NIC driver settings

Or you can display a list of network adapters with VMQ support and their status using PowerShell:

Get-NetAdapterVmq

To disable VMQ for a specific NIC, run the command below (the network adapter will be unavailable for a couple of seconds):

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

check if vmq is enabled in NIC - powershell

After disabling VMQ, it is better to restart the host and check the network performance.

Make sure that QoS bandwidth limit policies are disabled in Windows.

Optimize TCP Settings for Hyper-V on Windows Server 2019

Save the current TCP settings on your Hyper-V host and apply new settings that will make TCP settings in Windows Server 2019 almost similar to those of Windows Server 2016.

Save the current settings:

Get-NetTCPSetting -SettingName Datacenter,DatacenterCustom,InternetCustom,Internet|select SettingName,CongestionProvider,CwndRestart,ForceWS|Export-csv c:\backup\ws2019_network_stack_settings_nettcp_backup.csv

By default in Windows Server 2019 and Windows 10 1709+, the CUBIC implementation of TCP is used. This algorithm is optimized for high-speed networks with high latency (it is also used by default in Linux kernel 2.6.19 and newer).

Windows TCP stack on Windows Server 2019 based on CUBIC

Apply the following settings only in Windows Server 2019 or Hyper-V 2019.

Apply new NetTCP settings for LAN:

Set-NetTCPSetting -SettingName DatacenterCustom,Datacenter -CongestionProvider DCTCP
Set-NetTCPSetting -SettingName DatacenterCustom,Datacenter -CwndRestart True
Set-NetTCPSetting -SettingName DatacenterCustom,Datacenter -ForceWS Disabled

For WAN:

Set-NetTCPSetting -SettingName InternetCustom,Internet -CongestionProvider CTCP
Set-NetTCPSetting -SettingName InternetCustom,Internet -DelayedAckTimeoutMs 50
Set-NetTCPSetting -SettingName InternetCustom,Internet -ForceWS Disabled

Disable network RSS and RSC network optimization methods at the TCP stack level:

netsh int tcp show global
netsh int tcp set global RSS=Disabled
netsh int tcp set global RSC=Disabled

or on the NIC level:

Get-NetAdapter | Set-NetAdapterAdvancedProperty -DisplayName "Recv Segment Coalescing (IPv4)" -DisplayValue "Disabled" -NoRestart
Get-NetAdapter | Set-NetAdapterAdvancedProperty -DisplayName "Recv Segment Coalescing (IPv6)" -DisplayValue "Disabled" -NoRestart
Get-NetAdapter | Set-NetAdapterAdvancedProperty -DisplayName "Receive Side Scaling" -DisplayValue "Disabled" –NoRestart

Disable vRSS for all VMs:

Get-VM | Set-VMNetworkAdapter -VrssEnabled $FALSE

Disable Large Send Offload (LSO) on NICs:
Get-NetAdapter | Set-NetAdapterAdvancedProperty -DisplayName "Large Send Offload Version 2 (IPv4)" -DisplayValue "Disabled" -NoRestart
Get-NetAdapter | Set-NetAdapterAdvancedProperty -DisplayName "Large Send Offload Version 2 (IPv6)" -DisplayValue "Disabled" -NoRestart
Get-NetAdapter | Restart-NetAdapter

You can also disable these options in the Advanced tab of your network adapter properties:

  • Recv Segment Coalescing (IPv4/IPv6) = Disabled
  • Large Send Offload V2 (IPv4/IPv6) = Disabled

disable recv segment coalescing on hyper-v

These TCP stack settings will make Windows Server 2019 network protocol settings similar to those of previous Windows Server versions.

7 comments
11
Facebook Twitter Google + Pinterest
Hyper-VPowerShellVirtualizationWindows Server 2016Windows Server 2019
previous post
Enter-PSSession: Running Remote Commands in Interactive Shell
next post
Microsoft Office Volume Activation Using KMS Server

Related Reading

How to Install and Configure Free Hyper-V Server...

March 16, 2024

Windows Cannot Find the Microsoft Software License Terms

April 19, 2023

Configure SR-IOV for Hyper-V Virtual Machines on Windows...

March 29, 2022

Import, Export and Clone Virtual Machines in Hyper-V

January 19, 2022

Hyper-V Virtual Machine Stuck in Stopping/Starting State

March 16, 2024

How to Install Windows 11 on a Hyper-V...

June 8, 2023

Managing Hyper-V Virtual Machines with PowerShell

June 8, 2023

Hyper-V: Enabling Routing Between Internal Networks (Subnets)

August 2, 2021

7 comments

Jérôme Sporbert February 22, 2022 - 1:52 pm

I am a customer engineer at Microsoft working on Hyper-V, Azure Stack HCI,…
if you want to improve Network Performance for your Hyper-V, you should follow our official recommendations:

https://techcommunity.microsoft.com/t5/networking-blog/synthetic-accelerations-in-a-nutshell-windows-server-2019/ba-p/653976

In this article , you are basically disabling every Network Optimization.

A simple file copy is not a representative way to test Network Performance as it is mainly mono-threaded, thus you could possibly not take advantage of vRSS / RSS basically.

Reply
serg March 2, 2022 - 6:09 pm

Microsoft introduced a new feature in Server 2019 called “Receive Segment Coalescing” (RSC).
Apparently it is used for offloading tasks from the CPU to the network card. It strips the headers from packets and combines the payload of those into one packet.
It is enabled by default on all vSwitches on Windows Server 2019. Of course it doesn’t work and just causes problems on some hardware configurations.

Reply
C May 16, 2022 - 5:13 am

Thank you so much! Disabling RSC seems to solve an issue that’s being bugging our CAD users!

Reply
ada August 16, 2022 - 12:56 pm

Thank you! You saved me from buggy SMB tcp dup ack and retransmissions!

Reply
ManuC December 21, 2022 - 12:02 am

thank you, I applied the change in the network card as explained in the “Virtual Machine Queue (VMQ) Mode in Network Adapter Driver” and now it works like a charm!, before this, the maximum speed of transfer was about 10Kb/s 😊

Reply
Justin September 11, 2023 - 5:25 pm

Thank you so much for this! My host is capable of 1150Mbps down and 45Mbps up (Spectrum). Sandbox and VMs were only getting 3Mbps down and 45Mbps up. What? I then later discovered this only happens on my 10Gb NIC. Full speed on my 1Gb NIC. What? Disabling RSC fix it. Even more confusing, iperf was always full speed between client and host. It was just internet that was degraded. This was happening on Win11.

Reply
NotMauriceMoss November 22, 2024 - 10:12 pm

I’m curious . . . Did the research that you did for this article include reading through the following SpiceWorks post?

https://community.spiceworks.com/t/server-2019-network-performance/724968

Reply

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Recent Posts

  • Map a Network Drive over SSH (SSHFS) in Windows

    May 13, 2025
  • Configure NTP Time Source for Active Directory Domain

    May 6, 2025
  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025
  • Load Drivers from WinPE or Recovery CMD

    March 26, 2025
  • How to Block Common (Weak) Passwords in Active Directory

    March 25, 2025
  • Fix: The referenced assembly could not be found error (0x80073701) on Windows

    March 17, 2025
  • Exclude a Specific User or Computer from Group Policy

    March 12, 2025
  • AD Domain Join: Computer Account Re-use Blocked

    March 11, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Hyper-V Virtual Machine Stuck in Stopping/Starting State
  • How to Install and Configure Free Hyper-V Server 2019/2016
  • How to Install Windows 11 on a Hyper-V Virtual Machine
  • USB Device Passthrough (Redirect) to Hyper-V Virtual Machine
  • Windows Cannot Find the Microsoft Software License Terms
  • How to Enable and Configure Hyper-V Remote Management
  • Hyper-V: Enabling Routing Between Internal Networks (Subnets)
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top