Hello,
There is a Receive Segment Coalescing (RSC) feature in Hyper-V on Windows Server 2019/2022. RSC allows reducing CPU load and improving network throughput by combining multiple TCP segments into larger segments. Network performance is improved because large segments are processed faster than many smaller segments. But if RSC support is enabled, it may cause additional network latency in some hardware configurations.
You can check if RSC is enabled for a virtual switch using the following powershell command:
Get-VMSwitch | Select-Object *RSC*
To disable software RSC for a specific virtual switch, run the following command:
Set-VMSwitch -Name vSwitchName -EnableSoftwareRsc $false
Check if the network speed in the Hyper-V VM is improved after disabling RSC. If the network speed is improved, you can disable RSC on the virtual switch to which the VM is connected.
Hope the above information is helpful to you.
Best Regards
Zunhui