Thanks for your reply. I do have a static route on my laptop (10.100.200.152) as follows:
route add 192.168.5.0 mask 255.255.255.0 10.100.200.51
From my laptop I can ping 192.168.5.30 (the IP address of the second NIC on the Win 2k3 server) but cannot ping any other device on that subnet. Am I missing something on the Win 2k3 side?
Main Topics
Browse All Topics





by: JFrederick29Posted on 2009-05-18 at 09:43:00ID: 24413755
The clients default gateway (assuming the Internet Firewall/Router) needs a static route to the other subnet via the Windows 2003 server NIC on that same subnet.
i.e. the 192.168.5.x default gateway needs a static route to 10.100.200.0/24 via 10.100.200.51 and the 10.100.200.x default gateway needs a static route to 192.168.5.0/24 via 192.168.5.30.
Most Firewalls (stateful) won't allow this type of communication so you may need to add routes to every PC to reach the other subnet via the server.
For PC's on the 10.100.200.0/24 subnet.
route add -p 192.168.5.0 mask 255.255.255.0 10.100.200.51
For PC's on the 192.168.5.0/24 subnet.
route add -p 10.100.200.0 mask 255.255.255.0 192.168.5.30