RRAS on Winnt Server 2000/2003

U

Useko Netsumi

Hi I was wondering if anyone can point me in the right direction.

Here's the network:

Server A has 2 nic with the following address:

NIC1: aaa.bbb.ccc.ddd
NIC2: aaa.bbb.xxx.ddd

Server B has 2 nic with the following address
NIC1: aaa.bbb.xxx.eee
NIC2: uuu.vvv.ppp.rrr

How do I forward packet back and forth between

aaa.bbb.xxx.0 network to aaa.bbb.ccc.0 network? Thanks
 
B

Bill Grant

The only real problem is in the "middle" subnet. You cannot use default
routing in both directions at once! So you must make one router the default
gateway, and add a static route to "bounce" the traffic for the "other"
outside subnet to the other router.

That is, you set the routing to work by default in one direction and use
a static route in the other. For example

subnet A clients
192.168.0.x dg 192.168.0.1
|
192.168.0.1 dg blank
router 1
192.168.10.1 dg 192.168.10.254
|
subnet B clients dg 192.168.10.254
|
192.168.10.254 dg blank
router 2
192.168.20.1 dg blank
|
subnet C clients
192.168.20.x dg 192.168.20.1

To router 2, add a static route to forward traffic for subnet A to router
1.

eg 192.168.0.0 255.255.255.0 102.168.10.1

Anyl client should be able to route to any other client in any subnet.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top