Forum Discussion
Nov 09, 2022
Bypass LBFO Teaming deprecation on Hyper-V and Windows Server 2022
Starting with Windows Server 1903 and 1909, Hyper-V virtual switches on an LBFO-type network adapter cluster are deprecated (see documentation). The technology remains supported, but it will not e...
ahmedsaftawy
Apr 04, 2025Copper Contributor
The following commands worked for me:
NIC Teaming Creation:
New-NetLbfoTeam -Name "NIC Team Name" -TeamMembers "NIC1 Name","NIC2 Name" -TeamingMode LACP -LoadBalancingAlgorithm Dynamic
Hyper-V vSwitch Creation and Binding
New-VMSwitch -Name "Hyper-V vSwitch Name" -NetAdapterName "NIC Team Name" -AllowNetLbfoTeams $true