I started using Hyper-V a short time ago, I only have experience with ESXi. I'm trying to do a link aggregation with the 4 network interfaces between bare metal with Hyper-V and the switch. I've already learned how to make a Hyper-V NIC TEAM to offer to the VMs the aggregate interface, but now I'm trying to make the NIC TEAM in bare metal (server <=> switch). See the image where I want to make the NIC TEAM. Does not Hyper-V 2016 (core, not GUI) allow this? (The switch accepts link aggregation.)
Asked
Active
Viewed 597 times
1
-
Now the advice. I think of making a NIC TEAM between the bare metal HP and my switch or rather make a NIC TEAM between Hyper-V and VM. For example, my bare metal has 4 NICs and I want to do 2-2 aggregation and connect two VMs in each aggregation. What would be better, do the link aggregation between Hyper-V and the switch, or do the link aggregation between Hyper-V and VMs (using the virtual switch + aggregation concept)? – Marcelo Magalhães Mar 22 '18 at 04:33
2 Answers
0
I think the New-NetlbfoTeam powershell cmdlet would work for you.
Something like this:
New-NetlbfoTeam -Name Team1 -TeamMembers NIC1,NIC2 -TeamingMode SwitchIndependant -LoadBalancingAlgorithm Dynamic
https://docs.microsoft.com/en-us/powershell/module/netlbfo/New-NetLbfoTeam?view=win10-ps

Aaron D
- 303
- 3
- 12