Since both subnets are private, I assume there is a router somewhere
doing NAT. So you do not really need NAT on this server.
If you configured NAT it would probably work. But you would be doing
address translation twice (once at your server and again at the NAT router).
If you just enable LAN routing on your server, the problem is that the
Internet router will not know how to reach your added subnet. It only knows
about 192.168.1.0 subnet.
To get to the Internet from your added subnet (and ping between the two
private subnets) you need extra routing on the NAT router. eg
Internet
|
NAT router
192.168.1.254
|
workstations
192.168.1.x dg 192.168.1.254
|
192.168.1.25 dg 192.168.1.254
RRAS
192.168.0.1 dg blank
|
workstations
192.168.0.x dg 192.168.0.1
This will work if the NAT router knows that it can reach the new subnet
via the RRAS router. So a static route on the NAT router
192.168.0.0 255.255.255.0 192.168.1.25
would make it work.
If you can't get access to the Internet NAT router, you will have to
make do with NAT on the RRAS router. The problem then doesn't arise, because
all traffic from the 192.168.0.0 subnet is NATed by the RRAS router, and
the Internet NAT router sees all this traffic as coming from 192.168.1.25 .
But you probably won't be able to ping between the private subnets (because
of NAT on the RRAS router) .
"Kenny" <(E-Mail Removed)> wrote in message
news

C58E253-C549-4D2D-92DA-(E-Mail Removed)...
> I am trying to setup a Windows server 2003 for a small training room
within
> our company such that the 2003 server will act as the router and allow the
> students to get on the Internet. I configured one Nic card on the server
> 192.168.0.1 (intranet) and then the second Nic card is 192.168.1.25. I
> installed RRAS. The server is connected to the same switch as the training
> room PCs. I want the training room PCs to connect to the internet through
> this server and they also get their IP address from this server. The
server
> itself can access the internet but the training PCs cannot. I can ping
from
> the server to the training room but the training room computers
automatically
> get IP 192.168.0.x but they cannot ping the 192.168.1.25 NIC on the
server.
> How can I make this routing work so the classroom can get on the internet?
Do
> I need to setup Static route, NAT, or what? Please help me.