This article explain how to configure NIC Teaming on Windows Server 2012 R2 Core. As you know Core installation it's not included GUI to manage your server but also this kind of installed Windows server more performed from Full GUI installed one. Because that windows not working unnecessary task or progress.
NIC Teaming also so imported configuration for production environment. NIC teaming, also know as load balancing and failover(LBFO), also multiple network adapter on computer to be placed into a team.
To configure NIC Teaming on Windows Core, first you need to display or found network adapters on server. Type powershell on command prompt to switch powershell and type Get-NetAdapter command.
Get-NetAdapter powershell command display us current network adapters on server. In my example Ethernet and Ethernet 2 are two networks adapters on my virtual test environment. Next step, we must disable DHCP interface on networks adapters and set manually IP address to adapters. Because NIC Teaming is not good configuration with DHCP. To disable DHCP interface with set-NetIpInterface key.
Get-NetAdapter Ethernet | Set-NetIPInterface -dhcp disabled
Second Step is set new IP address to network adapters with;
Get-NetAdapter Ethernet | new-netIPAddress –IPAdress 192.168.0.101 –DefaultGateway 192.168.0.1 –PrefixLength 24
Do same thinks to "Ethernet 2"
Finally, create a NIC Teaming with New-Netlbfoteam powershell command.



