Identify the network adaptors to be used for the management/compute traffic and assign IP address to the first port.
Note: This step is not needed if you have DHCP in your environment. Ensure the hosts are assigned IPs in the correct VLAN.
Login to the host console of each system using iDRAC Virtual Console and assign host IPs
and respective VLANs
Disbale the DHCP on the management adaptors
Set-NetIPInterface -InterfaceAlias "NIC1",”NIC2” -Dhcp Disabled
Disbale disconnected network adaptors
Get-NetAdapter | Where-Object {$_.status -eq "disconnected"} | Disable-NetAdapter
New-NetIPAddress -InterfaceAlias "NIC1" -IPAddress 192.168.11.11 -PrefixLength 24
-AddressFamily IPv4 –Verbose
Get-NetAdapter -Name "pNIC1" | Set-NetAdapter -VlanID 202 -Confirm:$false
Note: Perform the above steps for all nodes by incrementing the IP address for each node.