This article elaborates on how we can modify VNIC settings based on the needs. This would make the process convenient for everyone.
Windows PowerShell
In Windows PowerShell, Use Set-NetAdapterAdvancedProperty to modify VNIC settings.
Example: To change the vmxnet3 ring size settings, run the following command and change the Display Value according to your needs.
Set-NetAdapterAdvancedProperty -Name <Interface name> -DisplayName "Small Rx Buffers" -DisplayValue "8192" –NoRestart -Verbose
Set-NetAdapterAdvancedProperty -Name <Interface name> -DisplayName "Rx Ring #1 Size" -DisplayValue "4096" –NoRestart -Verbose