📖 ~1 min read
Table of contents
Symptom & Impact
Secondary DNS servers stop updating and clients resolve stale records from out-of-date zones.
Environment & Reproduction
Primary zone on Windows Server 2019 with restrictive transfer settings.
Get-DnsServerZone -Name contoso.local | Select ZoneName,ZoneType,SecureSecondaries
Root Cause Analysis
Zone transfer is disabled or authorized secondary server IPs are missing from policy.
Quick Triage
Check SOA serial mismatch between primary and secondary servers.
Resolve-DnsName contoso.local -Server 10.0.0.10 -Type SOA
Resolve-DnsName contoso.local -Server 10.0.0.20 -Type SOA
Step-by-Step Diagnosis
Validate transfer settings and network path on port 53 between DNS peers.
Test-NetConnection 10.0.0.10 -Port 53
Get-WinEvent -LogName 'DNS Server' -MaxEvents 80

Solution — Primary Fix
Allow transfers to secure secondaries and trigger replication.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
Set-DnsServerPrimaryZone -Name contoso.local -SecureSecondaries TransferToSecureServers
Invoke-DnsServerZoneTransfer -Name contoso.local -ComputerName dns02.contoso.local

Solution — Alternative Approaches
For AD-integrated zones, switch to AD replication scope instead of secondary transfer.
Set-DnsServerPrimaryZone -Name contoso.local -ReplicationScope Forest
repadmin /syncall /AdeP
Verification & Acceptance Criteria
Secondary SOA serial aligns with primary and transfer errors stop.
Resolve-DnsName contoso.local -Server dns02.contoso.local -Type SOA
Rollback Plan
Disable transfers again if unexpected exposure is detected.
Set-DnsServerPrimaryZone -Name contoso.local -SecureSecondaries NoTransfer
Prevention & Hardening
Restrict transfers to explicit secondaries and audit transfer requests.
Set-DnsServerDiagnostics -EnableLoggingForZoneTransfers $true
Related Errors & Cross-Refs
Related to stale glue records and firewall ACL mismatches.
Related tutorial: View the step-by-step tutorial for Windows Server 2019.
View all Windows Server 2019 tutorials on the Tutorials Hub →
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Microsoft Learn: DNS zone transfer security and AD-integrated DNS design.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today — we respond within one business day.