Windows Clustering newbie
listed in answer
ANSWER:
Your networking is quite messed up, and you don’t tell anything about your private NIC configuration, but I’ll give it a try.
First of all, you can’t use a default gateway of 192.168.106.1 on a computer which is connected to the 192.168.1.0/24 network; there’s just no way that computer could actually reach the gateway. If VMware has automatically configured your virtual network to use the 192.168.106.0/24 subnet, you need to either stick to it or configure it to use the same subnet you want to use for your VMs (192.168.1.0/24). For the sake of simplicity, let’s just assume you don’t change anything: then, your main network should use the 192.168.106.0/24 subnet, and your virtual servers should be configured accordingly.
Then there’s the iSCSI setup; while it is possible to run iSCSI on the same network used for public cluster access, this is definitely not a proper setup; you should use a dedicated network for iSCSI. You aren’t saying where you are actually running your StarWind software, but chances are you are running it in another VM. You should add another NIC to that VM and to the two cluster nodes, and use those NICs for iSCSI (BTW, if it’s a Windows Server 2008 R2 VM, you don’t need the StarWind software: Microsoft offers a free iSCSI target software for this system; see here). You should configure your iSCSI target software to offer its services on the iSCSI IP address, and then configure the cluster nodes to use that IP address as their iSCSI target.
Finally, you are mixing the terms “private” and “public” here; in cluster terminology, the “public” network is the one through which flows all communications between the nodes and the rest of the world, while the “private” one is only for the cluster nodes to talk between themselves. This means the DC should be on the “public” network, not on the “private” one.
Your setup should include three networks (public, private and iSCSI); as I said above, the main network should use the same subnet where your default gateway resides; you are free to choose any other subnet for the other two networks.
In this example, I’ll use the following networks:
Public: 192.168.106.0/24
Private: 192.168.10.0/24
iSCSI: 192.168.20.0/24
Your setup should look like this:
DC:
1 NIC, public network: 192.168.106.2/24, DNS 192.168.106.2, default gateway 192.168.106.1
iSCSI Server:
1 NIC, public network: 192.168.106.5/24, DNS 192.168.106.2, default gateway 192.168.106.1
1 NIC, iSCSI network: 192.168.20.5/24, no DNS, no default gateway
Node 1:
1 NIC, public network: 192.168.106.3/24, DNS 192.168.106.2, default gateway 192.168.106.1
1 NIC, private network: 192.168.10.3/24, no DNS, no default gateway
1 NIC, iSCSI network: 192.168.20.3/24, no DNS, no default gateway
Node 2:
1 NIC, public network: 192.168.106.4/24, DNS 192.168.106.2, default gateway 192.168.106.1
1 NIC, private network: 192.168.10.4/24, no DNS, no default gateway
1 NIC, iSCSI network: 192.168.20.4/24, no DNS, no default gateway

New Comments