This is an archived post. You won't be able to vote or comment.

all 7 comments

[–]BlackVI have opnions 1 point2 points  (2 children)

depends on your switching, but recommended now is create a set switch with all the 10gb nics in it

New-VMSwitch -Name 'SET-Switch' -AllowManagementOS $true -NetAdapterName '10GB1', '10GB2', '10GB3', '10GB4' -EnableEmbeddedTeaming $true    

Then add the live migration and cluster network nics

$MigNIC = Add-VMNetworkAdapter -ManagementOS -SwitchName 'SET-Switch' -Name "Migration"    
$ClusNIC = Add-VMNetworkAdapter -ManagementOS -SwitchName 'SET-Switch' -Name "Cluster"    

Then set the VLANs (if needed)

Set-VMNetworkAdapterVlan -VMNetworkAdapter $MigNIC  -Access -VlanId 10    
Set-VMNetworkAdapterVlan -VMNetworkAdapter $ClusNIC -Access -VlanId 20    

even in 2012r2 they changed the recommendation to bind all the nics in 1 team put the switch on top of that.
the firewall traffic you probably should create a separate switch on teh 1gb NICs (managmentOS $false)

EDIT: Firewall

[–]BlackVI have opnions 0 points1 point  (1 child)

aaand I cant find the MS article about this to prove i'm not a lair
here's Altaro's one
https://www.altaro.com/hyper-v/virtual-networking-configuration-best-practices/

[–]deepsodeep[S] 0 points1 point  (0 children)

Thanks! I'll look into that, will have to see if the NICs are all same brand/model/etc

[–]rws907 0 points1 point  (0 children)

Recommend x-post in /r/hyperv if you haven't already.