Difficulty: Easy
Correct Answer: Run ipconfig /registerdns from the client
Explanation:
Introduction / Context:
Windows 2000 introduces dynamic DNS updates for both forward (A) and reverse (PTR) records. When a client's IP or name changes—or if DNS records are missing—you can request an immediate re-registration instead of waiting for periodic refresh. This is especially useful after restoring DNS zones or changing DHCP scopes.
Given Data / Assumptions:
Concept / Approach:
Running ipconfig /registerdns on the client forces the DNS Client service to send dynamic update requests for the host's A and PTR records to its configured DNS server. No special server-side command is required beyond permitting updates on the zone.
Step-by-Step Solution:
Verification / Alternative check:
Use nslookup
Why Other Options Are Wrong:
Common Pitfalls:
Zones set to ‘‘none’’ for dynamic updates will ignore the client's request; ensure ‘‘nonsecure and secure’’ or ‘‘secure only’’ is appropriate for your environment.
Final Answer:
Run ipconfig /registerdns from the client
Discussion & Comments