DNS Lookup Tool

Check DNS records for any domain or IP address. Quickly inspect A, MX, TXT, NS, and other records using multiple DNS resolvers.

Check common DNS records for any domain, inspect mail and verification records, and run reverse PTR lookups for IP addresses. This tool is useful for sysadmins, developers, and anyone troubleshooting DNS, email delivery, SSL validation, or hostname configuration.

Use it to quickly review A, AAAA, MX, TXT, NS, CNAME, SOA, PTR, CAA, and SRV records from different resolvers without leaving the browser.

Try: google.com, cloudflare.com, 8.8.8.8

Resolver

How to use

  • Enter a domain name such as example.com, zaur.it, or an IP address for reverse lookup.
  • Choose a resolver if you want to compare how public DNS providers answer for the same name.
  • Select a record type, or keep ALL to load the most common records in one view.
  • Click Lookup DNS. After results are loaded, you can switch record types to filter the existing response instantly.
  • Use the copy icon on result rows to copy an exact value such as an IP address, MX target, TXT string, or nameserver hostname.

Understanding the results

Each row shows the record type, the returned value, and the TTL. TTL stands for time to live and tells recursive resolvers how long they may cache that answer before asking again.

  • A → IPv4 address for a hostname
  • AAAA → IPv6 address for a hostname
  • MX → mail server responsible for receiving email for the domain
  • TXT → text-based policy or verification record, often used for SPF, domain verification, or custom metadata
  • NS → authoritative nameservers for the zone
  • CNAME → alias pointing one hostname to another hostname
  • SOA → zone authority information such as primary nameserver and serial
  • PTR → reverse DNS mapping from IP address to hostname
  • CAA → certificate authority restriction policy for SSL/TLS issuance
  • SRV → service location record used by some protocols and applications

Practical examples

Example 1 — check a website IP address

Look up A or AAAA for a domain to see where the website resolves. This is useful when validating CDN changes, migrations, or DNS cutovers.

Query: zaur.it
Record type: A

You should get one or more IPv4 addresses. If the domain is dual-stack, check AAAA as well to confirm IPv6 is configured correctly.

Example 2 — verify email routing

Use MX to see which mail hosts receive email for the domain. This helps when testing Microsoft 365, Google Workspace, IONOS, Zoho, or on-prem mail delivery.

Query: yourdomain.com
Record type: MX

Check that the hostnames are correct and that the priority values make sense. Lower priority numbers are preferred first.

Example 3 — inspect SPF or domain verification records

TXT records often contain SPF policies, ownership verification tokens, or service-specific metadata.

Query: yourdomain.com
Record type: TXT

This is useful when troubleshooting “domain not verified”, “SPF missing”, or “mail authentication failed” style issues.

Example 4 — confirm nameserver delegation

Use NS to verify which authoritative nameservers are assigned to the zone. This is especially helpful after registrar updates or delegation changes.

Query: yourdomain.com
Record type: NS

If the nameservers are not what you expect, the domain may still be delegated elsewhere or not fully updated yet.

Example 5 — check reverse DNS for an IP address

Reverse lookups use PTR. This is important for mail server reputation, hostname consistency, and general network diagnostics.

Query: 8.8.8.8
Record type: PTR

A working PTR record maps the IP back to a hostname. If there is no PTR, many mail-related checks will fail or look suspicious.

Example 6 — check if SSL certificate issuance is restricted

Use CAA to see which certificate authorities are allowed to issue certificates for the domain.

Query: yourdomain.com
Record type: CAA

This is useful when validating certificate automation and diagnosing unexpected issuance failures.

FAQ

DNS lookup tool FAQ

Public resolvers can cache data for different lengths of time, refresh at different moments, or still hold older answers during propagation. If one resolver shows a new value and another still shows the old one, the zone may still be propagating or one resolver may still be serving a cached response.

Common use cases

  • Validate website DNS after migration
  • Confirm email routing and MX priorities
  • Inspect SPF or verification TXT records
  • Check if a hostname uses IPv6
  • Review authoritative nameservers after registrar changes
  • Test reverse DNS for mail or server reputation
  • Inspect CAA before certificate issuance troubleshooting

Other tools