Docs / DNS & Domains / How to Check DNS Propagation

How to Check DNS Propagation

By Admin · Feb 25, 2026 · Updated Apr 23, 2026 · 420 views · 1 min read

After changing DNS records, verify they've propagated globally.

Command Line

# Query specific DNS server\ndig @8.8.8.8 example.com\ndig @1.1.1.1 example.com\n\n# Query all record types\ndig example.com ANY\n\n# Check MX records\ndig example.com MX\n\n# Check TXT records\ndig example.com TXT

Online Tools

Use websites like dnschecker.org or whatsmydns.net to check propagation across multiple locations worldwide.

Speed Up Propagation

  • Lower the TTL before making changes (e.g., to 300 seconds)
  • Wait for the old TTL to expire before checking
  • After propagation, increase TTL back for caching efficiency

Was this article helpful?