Table of Contents
Microsoft - DNS
Blogposts/Articles
Notes
Limit DNS registration of A-records to specific IPs
If a Windows Server is running the DNS Server service it will register all the IP addresses bound to the DNS Server service in it's DNS zone(s).
If this is undesired, a registry entry must be added with the IP addresses that should be registered in DNS.
After setting this key a restart of the DNS Server service is required to make the change take effect.
Query the registry key:
"%SYSTEMROOT%\system32\reg.exe" QUERY "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DNS\Parameters" /v PublishAddresses
Set the registry key:
"%SYSTEMROOT%\system32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DNS\Parameters" /v PublishAddresses /t REG_SZ /d "10.0.1.10" /f
Source: How to enable or disable DNS updates in Windows 2000 and in Windows Server 2003 (KB246804)
See also:
Binary War - Prevent registration of multiple IP addresses in DNS
IT - Hint - Prevent Registration of Certain Domain Controller DNS Records
TechNet - Windows 2000 Server - Domain Controller Name Registration
Windows Server Forum - Domain controller DNS registration