Home
Operating System
Windows
Linux
Tutorial
Windows Server
About
☰
NIC Teaming
# Check Network Adapter
Get-NetAdapter
✏️ Edit
📋 Copy
Copied!
# Create NIC Teaming
New-NetLbfoTeam ` -Name "Team0" ` -TeamMembers "Ethernet","Ethernet 2","Ethernet 3","Ethernet 4" ` -TeamingMode SwitchIndependent ` -LoadBalancingAlgorithm Dynamic
✏️ Edit
📋 Copy
Copied!
# Check Teaming
Get-NetLbfoTeam
✏️ Edit
📋 Copy
Copied!
# View Details Teaming Network Card Member
Get-NetLbfoTeamMember
✏️ Edit
📋 Copy
Copied!
# IP Static
New-NetIPAddress ` -InterfaceAlias "Team0" ` -IPAddress 172.31.255.14 ` -PrefixLength 28 ` -DefaultGateway 172.31.255.1
✏️ Edit
📋 Copy
Copied!
# Dns Static
Set-DnsClientServerAddress ` -InterfaceAlias "Team0" ` -ServerAddresses "172.31.255.14","8.8.8.8"
✏️ Edit
📋 Copy
Copied!
# View IP And DNS
Get-NetIPConfiguration -InterfaceAlias "Team0"
✏️ Edit
📋 Copy
Copied!
Labels
all
(30 )
autocad
(3 )
css
(2 )
linux
(5 )
op_system
(18 )
website
(4 )
windows
(14 )
windowsServer
(26 )