How to team network (link aggregation) in Windows 11

Intel Ethernet Converged Network Adapter X710, with two 10Gbps ports. This allows to team the two ports together for link aggregation.

  • Install Optional Features Server Manager in Windows 11

Server Manager

  • Open and run Windows Powershell as administrator, then run:
1
PS C:\> New-NetSwitchTeam -Name "NIC-Team" -TeamMembers "X710-1","X710-2"

Network Connections

A new network interface created, with combined speed 20Gbps.

Network Status

Network Details

To remove network team, run:

1
PS C:\> Remove-NetSwitchTeam -Name "NIC-Team"

Contents