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 Managerin Windows 11

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

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


To remove network team, run:
1 | PS C:\> Remove-NetSwitchTeam -Name "NIC-Team" |