my current situation is this:
I have a DELL R730dx Server. Dual 6-core CPU , 32GB RAM.
Windows 2012 R2 Hyper-V setup on 2x200GB SSD in RAID-1 + 4x2TB HDD in RAID-10
Future Plan to add a second server in the same config to have a HA fail-over cluster.
what I am trying to do right now, is build out a single node Hyper-V cluster using server above + StarWind NFR license so when the second server come is
I can just configure it and add it to the cluster hot-plug style.
This is my first cluster build, let along my first build with StarWind, so I am getting a bit confused on things like how to configure my network and if I did configure SW properly to be used with Cluster setup.
what makes it even more frustrating is that I only have 4 1Gb NIC interface on the server and everything I read says it is not enough. but adding 10Gb hardware is not in the stars for the nearest future. we just had a hardware update few month ago to the 1Gb. i.e. did the site rewire to cat-6e with proper layout and updated all end points to cat-6 rj-45 jacks. replaced all switches to 1Gb managed from netgear, etc.
my questions are as follow:
#1. providing I must stick with using 1Gb interfaces, how essential it is to double up the nic per server (i.e. get the new server with 8x1Gb, and get a second 4 port card to the current server)
#2. what would be the proper way to configure the network on the server for 2-node HA cluster setup I plan.
please give me the config scenario using the IP address I actually can use.
my primary network is 192.168.1.0/24 my first server IP is 192.168.1.8/24
NOTE : I have tried a config based on a how-to I found but got a bit confused in the middle of it hence I am here.
what I have so far is, I created a Team on NIC1.
using Power Shell I configred a switch and 3 vNIC on the team.
CODE: SELECT ALL
Code: Select all
## Creat new switch on a team network
New-VMSwitch -Name ConvergedHVSwitch -NetAdapterName HVTeam -AllowManagementOS $False -MinimumBandwidthMode Weight
### Create Virtual Network adaptors
Add-VMNetworkAdapter -ManagementOS -Name "Management" -SwitchName "ConvergedHVSwitch"
Add-VMNetworkAdapter -ManagementOS -Name "LiveMigration" -SwitchName "ConvergedHVSwitch"
Add-VMNetworkAdapter -ManagementOS -Name "CSV" -SwitchName "ConvergedHVSwitch"
### Set vNIC weight
Set-VMNetworkAdapter -ManagementOS -Name "LiveMigration" -MinimumBandwidthWeight 40
Set-VMNetworkAdapter -ManagementOS -Name "CSV" -MinimumBandwidthWeight 5
Set-VMNetworkAdapter -ManagementOS -Name "Management" -MinimumBandwidthWeight 5
New-NetIPAddress -InterfaceAlias "vEthernet (Management)" -IPAddress 192.168.1.7 -PrefixLength "24" -DefaultGateway 192.168.1.2
what would be my next step with this config?
#3 how do I configure the remaining NICs to be used by StarWind and Hyper-V cluster?
my short term goal is to have a single node hyper-V cluster up and running with StarWind vSAN as soon as possible.
this way I can push for second server to be ordered sooner rather than later.
my long term is to have the setup above up ASAP and adding the second server to the mix with in a month. two at most.
Thanks