I have just set up a Windows 2008 NLB cluster.
Clustered name is Cluster1, and there are two Windows 2008 R2 SP1 nodes, Node1 and Node2. Both are the physical server.
I have set up the NLB as by follow the step from Google. My NLB is configure as muticast.
Physical Node 1
IP address: 192.168.10.36
gateway:192..168.10.1
------------------------------------
Physical Node 2
IP address: 192.168.10.45
gateway:192.168.10.1
-----------------------------------
Virtual IP address for NLB
IP address: 192.168.10.46
However, the clustered IP/name cannot be reached via PING from outside the subnet (192.168.20.XX)
from subet (192.168.20.XX) i can ping to gateway, ping the server in 192.168.10.XX subnet without any problem. My problem is client can not ping to NLB Virtual IP address.
I have check below these link.
http://blogs.technet.com/b/networking/archive/2009/01/15/unable-to-connect-to-windows-server-2008-nlb-virtual-ip-address-from-hosts-in-different-subnets-when-nlb-is-in-multicast-mode.aspx?PageIndex=2#comments
From the thread, it give a work around to ad ARP entry
We can add a static ARP table entry for the Default Gateway IP address on the NLB Node.
Command to add static ARP entry
Arp –s <IP address> <Mac Address>
-------------------------------------------------------
The IP address and MAC address mean is add the default gateway IP address (192.168.10.1) and MAC address in to both NLB server ?
i try to run arp -a command on both NLB server have the default gateway IP address and MAC as below
C:\Users\>arp -a
Interface: 192.168.10.36 --- 0x13
Internet Address Physical Address Type
192.168.10.1 00-00-cd-XX-XX-XX dynamic
192.168.10.30 ac-16-2d-XX-XX-XX dynamic
192.168.10.31 ac-16-2d-XX-XX-XX dynamic
192.168.10.33 00-9c-02-XX-XX-XX dynamic
192.168.10.45 ac-16-2d-XX-XX-XX dynamic
192.168.10.212 f8-d1-11-XX-XX-XX dynamic
192.168.10.255 ff-ff-ff-ff-ff-ff static
Interface: 192.168.250.36 --- 0x1b
Internet Address Physical Address Type
192.168.250.255 ff-ff-ff-ff-ff-ff static
--------------------------------------------------------------------------
C:\>arp -a
Interface: 192.168.10.45 --- 0x13
Internet Address Physical Address Type
192.168.10.1 00-00-cd-XX-XX-XX dynamic
192.168.10.30 ac-16-2d-XX-XX-XX dynamic
192.168.10.31 ac-16-2d-XX-XX-XX dynamic
192.168.10.33 00-9c-02-XX-XX-XX dynamic
192.168.10.34 00-9c-02-XX-XX-XX dynamic
192.168.10.36 ac-16-2d-XX-XX-XX dynamic
192.168.10.255 ff-ff-ff-ff-ff-ff static
224.0.0.22 01-00-5e-XX-XX-XX static
224.0.0.252 01-00-5e-XX-XX-XX static
Interface: 192.168.250.51 --- 0x19
Internet Address Physical Address Type
192.168.250.30 ac-16-2d-XX-XX-XX dynamic
192.168.250.31 ac-16-2d-XX-XX-XX dynamic
192.168.250.33 00-9c-02-XX-XX-XX dynamic
192.168.250.34 00-9c-02-XX-XX-XX dynamic
192.168.250.36 ac-16-2d-XX-XX-XX dynamic
192.168.250.255 ff-ff-ff-ff-ff-ff static
224.0.0.22 01-00-5e-XX-XX-XX static
224.0.0.252 01-00-5e-XX-XX-XX static
Any ideas on how to fix this?