Note: This step is required for all network topologies.
At this point we assume you already have Azure Stack HCI Operating system installed on all your nodes.
#Login to the host console of each system using iDRAC Virtual Console and assign host IPs and respective VLANs
#This step is not needed if you have DHCP in your environment. Ensure the hosts are assigned IPs in the correct VLAN.
New-NetIPAddress -InterfaceAlias "pNIC1" -IPAddress 192.168.11.11 -PrefixLength 24 -AddressFamily IPv4 –Verbose
New-NetIPAddress -InterfaceAlias "pNIC2" -IPAddress 192.168.12.11 -PrefixLength 24 -AddressFamily IPv4 –Verbose
Get-NetAdapter -Name "pNIC1" | Set-NetAdapter -VlanID 202 -Confirm:$false
Get-NetAdapter -Name "pNIC2" | Set-NetAdapter -VlanID 202 -Confirm:$false
#Do the above for all nodes.
Note: Assign hostnames to each node and add all nodes to the domain.