I think I have confused myself here, I have 2 nodes with windows server 2019. I plan on creating a converged network using 5 10gb NICs.
I will create a NIC Team called 'Converged-vSW', the 5 NICs will be bound to the vSwitch. I will then create 5 vNICS via powershell:
Add-VMNetworkAdapter -ManagementOS -Name “Managment” -SwitchName “Converged-vSW”
Add-VMNetworkAdapter -ManagementOS -Name “VMData” -SwitchName “Converged-vSW”
Add-VMNetworkAdapter -ManagementOS -Name “Cluster” -SwitchName “Converged-vSW”
Add-VMNetworkAdapter -ManagementOS -Name “Live Migration” -SwitchName “Converged-vSW”
This is where I get confused, for my VM's, do I:
- Create a Hyper-V External Switch (say 'VMDataExternal_vSwitch') and point it to the 'VMData' adapter, then configure my VM's to use the 'VMDataExternal_vSwitch'
OR
- Create a Hyper-V External Switch (say 'VMDataExternal_vSwitch') and point it to the 'Converged-vSW' NIC Team, then configure my VM's to use the 'VMDataExternal_vSwitch'
PS. I had planned on setting vLAN tagging on the Hyper-V switch that will be used by the VMs.