This is an old revision of the document!
See also more Hyper-V pages
http://blogs.technet.com/b/gavinmcshera/archive/2011/03/27/3416313.aspx
http://www.altaro.com/hyper-v/how-to-adjust-mtu-jumbo-frames-on-hyper-v-and-windows-server-2012/
http://www.hyper-v.nu/archives/marcve/2013/01/lbfo-hyper-v-switch-qos-and-actual-performance-part-1/
http://channel9.msdn.com/Events/TechEd/NorthAmerica/2012/VIR303
http://technet.microsoft.com/en-us/library/jj134230
Tested on Windows Hyper-V Server 2012 with an Intel X540 10GbE NIC
Start PowerShell:
powershell
Display the current settings:
Get-NetAdapterAdvancedProperty -Name "Ethernet 4" -DisplayName "Jumbo Packet" | Format-list
Enable Jumbo Frames:
Set-NetAdapterAdvancedProperty -Name "Ethernet 4" -RegistryKeyword "*JumboPacket" -RegistryValue "9014"
Converged networks is a new functionality in Windows Server 2012 which allows the creation of virtual network adapter (normally used for virtual machines) in the parent partition (management OS).
Get-NetAdapter | sort Name
First, a new Hyper-V virtual switch needs to be created. The switch is created with the “Weight” mode in order to guarantee a minimum amount of network bandwidth for the cluster networks.
New-VMSwitch "ConvergedVMSwitch" -MinimumBandwidthMode Weight -NetAdapterName "ConvergedNicTeam"
Next, we check that the Hyper-V Extensible Virtual Switch is bound to the correct network adapter.
Get-NetAdapterBinding | where {$_.DisplayName -like "Hyper-V*"}
By default, a virtual management NICs is also created when a VM switch is created using this PowerShell cmdlet. This NIC is required because all NICs were used for the NIC team and the team is the Hyper-V virtual switch. Without, the virtual management NIC, you would no longer have access to the Hyper-V host itself.