Right got a gateway pee cee compaq deskpro 350 mhz pentium II, 64mb ram, win win2kpro on it, its got two nics, and my usb broadband modemn is connected to this.
So, really, it has THREE NICs, as the USB connection from the BB modem is also an emulated NIC.
I find pictures are worth a few thousand words, especially when we are seperated by the common language of English...
So, right now, you've got something like
GATEWAY PC -----> Internet
| |
PC1 PC2
What you're missing is the connection between PC1 and PC2. (The gateway won't let those two boxes see each other) I've not messed with having three logical NICs in the Win2k box before... There SHOULD be a way to do what you're asking, but I'm not positive my idea will work.
You might be able to do it by setting the default settings for each NIC like this:
Internet NIC connection:
[assigned by ISP] (shouldn't need to do anything here)
Gateway PC PC1 NIC:
IP: 192.168.0.1
Gateway Mask: 255.255.255.127
Gateway PC PC2 NIC:
IP: 192.168.0.128
Gateway Mask: 255.255.255.127
Then, you should be able to add the following two commands from a DOS prompt:
route -p add 192.168.0.1 mask 255.255.255.127 192.168.0.127 metric 1
route -p add 192.168.0.128 mask 255.255.255.127 192.168.0.1 metric 1
This adds two static routes to your registry. One for getting from 192.168.0.1 subnet to 192.168.0.128, and one for the inverse, getting from 128 back to 1.
Of course, this is somewhat theoretical, since I haven't tried it. The really simple way is to just get a repeating hub off the gateway PC. That way, you don't need a NIC, subnet, and static routing information for each and every computer you want to connect. :-)