Hi,
In most cases you should have only one default gateway set on Windows computers with more then one NIC. If your 10.2.200.2 NIC is your link to the internet then you should remove default gateway on the other NIC and only set appropriate static routes on the server for 192.168.0.0 (and any other) subnets.
E.g. you will probably need to add the following route on the server
route add -p 192.168.0.1 mask 255.255.0.0 192.168.0.250
Note: I am guessing what you are using for your subnet mask. If you are using something other then 255.255.0.0 then you should replace 255.255.0.0 with what you are using. Also replace 192.168.0.250 above with IP address of your gateway on 192.168.0.0 subnet.
--
Mike
Microsoft MVP - Windows Security
"trueman" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
There is a computer with two netcards, the IP is 192.168.0.1 and 10.2.200.2. The netcard(netcard1) which IP is 192.168.0.1 will communicate with a hardware, and the other one (netcard2:10.2.200.2) will be connected to LAN.
I want to change IP address of the netcard2(10.2.200.2) to 10.2.200.3, one error window popup and the error message is:
Warning - Multiple default gateways are intended to provide redundancy to a single network (such as an intranet or the Internet). They will not function properly when the gateways are on two separate, disjoint networks (such as one on your intranet and one on the Internet). Do you want to save this configuration?
I can ping this computer using IP address on the other computers, but can not ping this computer using computer name.
If I using the following command, the computer name just be returned correctly.
ping -a 10.2.200.2
|