An Azure service that enables hosting Domain Name System (DNS) domains in Azure.
Hey Tadas Šukys, it looks like you’ve correctly created your Azure DNS zone and pointed your registrar at the four Azure name‐servers, but some public resolvers (1.1.1.1, 8.8.8.8, etc.) are still serving the old data from cache. Here’s how to diagnose and fix it:
- Confirm proper delegation • Run a trace from the root down to your domain’s NS records:
dig NS your-domain.com +trace• At the “.com” step you should see exactly: ns1-01.azure-dns.com. ns2-01.azure-dns.net. ns3-01.azure-dns.org. ns4-01.azure-dns.info. If you see anything different here, update your registrar’s NS entries accordingly. - Check your registrar’s panel • Verify the four Azure NS entries are an exact match. • Watch out for trailing dot vs. no-dot issues—some registrars want you to omit the final “.”.
- Understand TTL and caching • Parent (TLD) servers publish their NS record TTL (often 48 hours or more). • Public resolvers cache that NS set for the full TTL. Even after you update at the registrar, caches can hold the old set until the TTL expires.
- Test specific resolvers • Do a direct query against Azure’s servers to bypass caches:
dig @ns1-01.azure-dns.com your-domain.com• Then test popular public DNS to see what they still return:dig NS your-domain.com @1.1.1.1dig NS your-domain.com @8.8.8.8 - Wait out propagation (if delegation is correct) • Once your registrar and trace show the Azure NS, it’s just a matter of waiting for all caches to time out—usually 48–72 hours, but some resolvers can be slower.
If after that you still see old servers on known public resolvers, please share:
• Your actual domain name
• The full output of dig NS your-domain.com +trace
• Screenshots or copy-pastes of what your registrar’s NS settings look like
With that we can pinpoint if it’s a delegation typo, a TTL issue, or something else. Good luck!
Kindly let us know if the above helps or you need further assistance on this issue.
If the answer is helpful, kindly upvote it. If you have extra questions about this answer, please click "Comment".