Kurt said:
Don't delete it. Go to the server properties page from the DNS snap-in
and disable round-robin. Make sure netmask ordering is enabled. Then you
will correctly resolve the server's IP address on the local subnet of
the machine making the DNS query.
..kurt
Round Robin tells the DNS server to provide multiple addresses in
revolving order. So if you have 3 NICs on server01 at 192.168.0.1,
192.168.1.1, and 10.1.1.1, DNS queries will be answered (as the primary
address):
First query:
192.168.0.1
Next query
192.168.1.1
then
10.1.1.1
If you disable it and netmask ordering is enabled, a query for server01
from a computer who's address is 10.1.23.105 will be resolved to
10.1.1.1. Herb may be right that you can force netmask ordering to be
applied before round robin, but this works for me. (netmask ordering
tells the server to resolve the query to the IP address of the interface
closest to the IP address the query came from). I have a triple homed DC
plus other multi-homed servers that must resolve to IP address on the
same subnet as the querying computer (obviously). There are situations
where this won't work, like if you have routed segments where netmask
ordering would resolve to an IP address to which there is no route. But
on multiple non-routed segments, this works great for me.
....kurt