Preventing automatic DNS updates for multi-homed NIC in Windows Server environment

5,882

Solution 1

With Windows Server 2008 and Windows Server 2008 R2 there is now a new Method to selectively determine, which IP Address should be registered in DNS.

You can try this: netsh int ipv4 add address "LAN" skipassource=true

For more information, see: http://support.microsoft.com/kb/2386184 (included in R2 SP1) IP addresses are still registered on the DNS servers even if the IP addresses are not used for outgoing traffic on a computer that is running Windows 7 or Windows Server 2008 R2

Please note, that there is an additional Hotfix that you should be aware of: http://support.microsoft.com/kb/2554859 The "skipassource" flag of IP addresses is cleared after you use the GUI to change IP settings of a network adapter in Windows 7 or in Windows Server 2008 R2

Best Regards, J.

Solution 2

To configure the NIC as mentioned above, open up the NIC properties in control panel, select TCP/IPv4 then click properties, click the advanced button in the bottom right, then click the DNS tab, then uncheck the check box 2nd from bottom titled Register this connection's addresses in DNS.

Share:
5,882

Related videos on Youtube

tacos_tacos_tacos
Author by

tacos_tacos_tacos

Updated on September 18, 2022

Comments

  • tacos_tacos_tacos
    tacos_tacos_tacos over 1 year

    Similar to How do I prevent one IP from creating a DNS entry on a multi-homed server? but I didn't get a clear answer there.

    I have a host, call it EXCHANGE, with two IPs, 10.5.1.10 and 10.5.1.15. I want EXCHANGE` to resolve ONLY to 10.5.1.15. Everyday I have to go in and delete an automatically created DNS record on my Windows Server 2008 R2 DC. Everyday it updates this dynamically and re-creates the DNS entry I do not want. I do not know how to suppress this behavior and it would be great so that certificate errors will go away. I'm sure there is a way to do it but I cannot figure it out for the life of me.

    • joeqwerty
      joeqwerty over 12 years
      It seems like the answer to the question you linked to would do the trick. Configure the NIC (assuming both ip addresses are assigned to the same NIC) to not register in DNS, then manually create an A record for the host name with the ip address that you do want in DNS.