Precise DNS
Online DIG Tool
Run online DIG lookups for A, AAAA, MX, NS, TXT and more — terminal-style DNS answers without installing bind-utils.
How to use the DIG query tool
- Enter a hostname or domain and pick one record type — A, AAAA, MX, TXT, NS, CNAME, SOA, CAA, PTR, or SRV. DIG is optimized for single-type traces, not the all-records pass that DNS Checker provides.
- Submit the query to receive resolver-style answer sections grouped like terminal dig output. TTL, authority, and additional sections help when you paste evidence into support tickets without reformatting.
- Compare answers with DNS Checker when you need broader context. DIG excels at repeating one type after a change (only MX, only TXT) while DNS Checker documents the whole zone for migration baselines.
- Copy the response for runbooks or API follow-up. Recent successful DIG queries stay in local browser history on your device — DN01 does not plot worldwide propagation maps or store a global query archive.
DIG record types supported
Choose the record type that matches your question. Mail deliverability usually starts with MX and TXT; hosting cutovers focus on A, AAAA, and NS; certificate workflows add CAA. The table maps each type to a typical operator question. For authoritative answers bypassing recursive cache, note the NS hostnames from a DNS Checker pass and query those nameservers directly in your terminal — DN01 DIG uses our configured resolver path, reflecting what most visitors see after TTL expiry.
| Type | Typical use | Query pattern |
|---|---|---|
| A | IPv4 address for a hostname | dig example.com A |
| AAAA | IPv6 address for a hostname | dig example.com AAAA |
| MX | Mail exchangers and preference values | dig example.com MX |
| TXT | SPF, DKIM, DMARC, verification strings | dig example.com TXT |
| NS | Authoritative nameservers for the zone | dig example.com NS |
| CNAME | Alias from one DNS name to another | dig www.example.com CNAME |
| SOA | Zone authority, serial, refresh timers | dig example.com SOA |
| CAA | Certificate authority authorization | dig example.com CAA |
| PTR | Reverse DNS for an IP (in-addr.arpa) | dig -x 93.184.216.34 |
| SRV | Service location host, port, priority | dig _sip._tcp.example.com SRV |
When DIG beats a full DNS lookup
Use DIG when support asks «paste your MX lookup» or «show TXT for this selector» and you want terminal-shaped output without installing bind-utils. Filtered DNS Checker views help, but DIG mirrors the habit of running dig example.com MX repeatedly during a mail migration window — same type, same host, quick before/after diff.
Trace delegation problems by querying NS, then SOA serial increments after zone edits. If SOA serial changes in DIG but MX still shows old values, your edit may have landed in the wrong DNS panel — confirm WHOIS nameservers against NS answers. DIG on NS alone is lighter than a full DNS Checker pass when you only suspect registrar glue mismatch.
Debug SPF and DKIM by DIG on TXT at the apex and on selector._domainkey labels. Concatenated multi-string TXT in answers is what mail servers evaluate — copy directly from DIG instead of retyping from provider PDFs. Pair with DNS Checker when you need DMARC at _dmarc and MX in the same screenshot for a deliverability ticket.
Certificate issuance failures often need CAA DIG before blaming the CA. A restrictive CAA record blocks issuance even when HTTP validation would succeed. After fixing CAA, re-DIG and run SSL Certificate Checker on the live host to confirm chain and SAN coverage on the new cert.
PTR lookups for mail egress IPs explain reverse DNS mismatches that trigger spam filters. DIG -x style queries through the tool complement Blacklist Checker hits — DNS auth and IP reputation are separate layers. DN01 DIG does not replace SMTP transcript analysis or mailbox tests.
SRE runbooks for game-day failures often loop DIG on health-check hostnames every minute while Kubernetes rolls pods — TTL on short-lived records should match rollout speed or caches serve stale backends. Pair with HTTP header checker once DIG shows new A records.
Academic researchers studying DNS censorship compare answers across resolvers — DN01 provides one vantage point honestly labeled, not a geopolitical map. Cite resolver path and timestamp when publishing measurement papers.
Troubleshooting DIG answers
Empty ANSWER sections with NOERROR mean the name exists but that record type is absent — not a tool failure. NXDOMAIN means the name itself is missing. SERVFAIL often points at broken authoritative NS or lame delegation; compare NS in DIG with WHOIS delegation.
CNAME chains can hide the final A record until you follow the alias. Query the CNAME target's A/AAAA after the first answer. Never place CNAME on labels that also carry MX or TXT — resolvers behave unpredictably and DIG may show confusing partial data.
Split-horizon DNS means your office resolver and 8.8.8.8 disagree. DN01 DIG reflects our resolver path, similar to DNS Checker — not your laptop's VPN DNS. For authoritative truth seconds after a save, query the provider's NS directly outside DN01 when possible.
TTL in DIG answers explains stale mail routes after fixes. Note the TTL, wait for cache expiry, and re-query. Lower TTL before planned changes, confirm with DIG, apply new data, then restore higher TTL after stability — same discipline as DNS Checker migrations without a fake propagation percentage bar.
ANY queries are deprecated on the public internet — prefer explicit types. If legacy monitoring still polls ANY, expect truncated or refused answers; migrate scripts to DNS Checker all-types view instead.
Resolver path vs authoritative queries
Recursive DIG (what DN01 provides by default) walks from root to TLD to authoritative NS, caching each step until TTL expires. That is what browsers and mail servers experience in production — valuable for «what does the world see?» Authoritative DIG @ns1.provider.net bypasses cache and shows the zone file the host publishes right now — valuable for «did my click Save work?»
During nameserver migrations, recursive DIG may return old NS while WHOIS already updated — cache lag. Authoritative queries at both old and new NS reveal which file still serves mail. DN01 does not automate multi-region resolver grids; use DNS Checker for grouped records and DIG for repeated single-type snapshots on one resolver path.
DNSSEC validation errors surface as bogus or insecure flags in full dig +dnssec output. DN01 focuses on common operator record types without turning every page into a DNSSEC tutorial — if DS records mismatch, escalate with your DNS host and registry panel, then confirm DS/DNSKEY with specialized tooling.
Pair DIG MX traces with HTTP header checker on autodiscover or mail web portals when diagnosing Microsoft 365 or Google Workspace cutovers. DNS correctness is necessary but not sufficient for working inboxes — autodiscover CNAME mistakes show up in headers and redirect chains, not in MX alone.
Five-step DIG troubleshooting workflow
- WHOIS the domain for registrar NS delegation; DIG NS on the hostname to see live answers.
- DIG SOA to capture serial and primary NS; note TTL on records you plan to change.
- Apply DNS panel edits; DIG the changed type every few minutes until answers match intent.
- Run DNS Checker for a grouped baseline screenshot; SSL Certificate Checker on new A/AAAA targets.
- Archive DIG outputs with timestamps in the ticket — DN01 keeps local browser history only, not shared case storage.
DIG vs DNS Checker vs terminal dig
DNS Checker returns all major record types in one grouped view — fastest for migration baselines and SaaS verification bundles. DIG returns one type in resolver-style sections — fastest for support paste requests and repeated MX/TXT loops. Use both on the same site; they complement rather than duplicate.
Local terminal dig supports +trace, @nameserver overrides, and +dnssec flags DN01 does not expose in the browser UI. DN01 trades those power flags for zero install, copy buttons, eight locales, API access, and consistent resolver path for teams blocked from CLI tools.
Online «propagation checkers» plot many regional resolvers; DN01 DIG does not. We show one high-quality snapshot per query with honest TTL context — choose propagation maps when the question is geographic cache lag, choose DIG when the question is «what is the MX string right now on this resolver path?»
Cached DNS panels and registrar «preview» tools can lie relative to public DNS. DIG and DNS Checker query live resolver data, not screenshots from your host's UI. We do not store full zone files, claim worldwide grids, or replace your authoritative DNS editor — accurate public answers with companion WHOIS, SSL, and header tools.
University courses still teach dig +trace on lab VMs — excellent pedagogy. DN01 DIG targets production operators under change windows who cannot SSH from a phone hotspot during a cutover. Export API JSON if your runbook generator needs machine-readable TTL fields alongside human paste buffers for Slack.
Managed DNS vendors expose audit logs separate from public DNS answers — when audit says change applied but DIG disagrees, open vendor ticket with both screenshots. DN01 does not access your private audit API; we only show public resolver-facing answers.
Why use DN01 DIG
- Terminal-style single-record answers for MX, TXT, NS, CAA, and more — without installing bind-utils.
- Natural companion to DNS Checker: grouped all-records view here, precise one-type traces there.
- Eight localized interfaces, copy-friendly output, local recent history, and documented API for scripts.
- Honest scope: one resolver snapshot per query, no fake propagation maps or full zone hosting.
FAQ
DIG FAQ
Terminal-style DNS answers in the browser, with context for common record types.
How is online DIG different from DNS checker?
DNS Checker is optimized for quick multi-record review. DIG is better when you want terminal-style output for one record type, similar to the `dig` command.
Which record type should I choose?
A and AAAA point hosts to IP addresses, MX handles mail, TXT often stores verification and SPF, and NS shows delegation. The DIG command online guide walks through common choices.
Can DIG help debug nameservers?
Yes. Query NS records here, then compare the delegation in DNS Checker. The DIG NS lookup guide is a useful companion.
Can DIG lookups be automated?
For scripts and monitoring, use the endpoint documented in the API docs after you request an API token.
What is the difference between DIG and nslookup?
Both query DNS, but DIG-style output shows the full answer section operators paste into tickets. See DIG vs nslookup for a practical comparison.
Can I query a specific record type only?
Yes. Pick A, AAAA, MX, TXT, NS, CNAME, SOA or other supported types instead of running an all-records pass. That keeps answers focused when you already know which section failed.
Does DIG show TTL values?
Yes. TTL appears in the answer section so you can estimate cache lifetime after a change. Pair with DNS Checker when you need every major type in one grouped view.
Can I check subdomains with DIG?
Enter the full hostname such as api.example.com or mail.example.com — the query targets that exact label, not only the apex domain.
Why might DIG disagree with my DNS panel?
You may be editing a child zone while the apex still delegates elsewhere, or resolvers may cache old answers until TTL expires. Compare NS delegation first, then query authoritative nameservers if needed.
Is online DIG free?
Yes for manual browser lookups. Rate limits protect the service; recurring checks can use the API docs after registration.
Should I use DIG or WHOIS first?
Use WHOIS for registrar, expiry, and nameserver delegation metadata. Use DIG when you need live answers for a specific record type consumed by resolvers.
Does DIG replace installing bind-utils?
For many operators yes — especially on locked-down laptops. You still need local DIG when debugging from inside a private network that public resolvers cannot see.
Tool switcher
Continue with another check
Pick the next step in your domain or security workflow.
- Domain IP LookupA and AAAA IP addresses for a domainOpen
- DMARC AnalyzerDMARC policy, alignment and reporting checksOpen
- DKIM ValidatorDKIM selector lookup and record validationOpen
- Domain Age CheckerCreation date, age, registrar and expiryOpen
- Blacklist CheckerDNSBL reputation for IP and domainOpen
- BIN CheckerCard brand, bank and country from BIN/IINOpen
- DNS CheckerAll major record types in one passOpen
- WHOISRegistrar, expiry and domain statusOpen
- SSL Certificate CheckerCertificate chain, SAN and TLS versionOpen
- HTTP/2 TesterHTTP/2 support, ALPN and TLS negotiationOpen
- HTTP Header CheckerResponse headers, redirects and cachingOpen
- Punycode ConverterUnicode ↔ Punycode for IDN domainsOpen
- IP CalculatorSubnet math for IPv4 and IPv6 CIDROpen
- Base64 CodecEncode and decode Base64 textOpen
- Password GeneratorStrong random passwords for ops workOpen
- Password Strength CheckerEntropy, crack time and password suggestionsOpen
- Passphrase GeneratorMemorable random word phrases for safer sharing testsOpen
- URL SplitterBreak a URL into parts and query paramsOpen
- Browser Update CheckerBrowser version, update status and Client HintsOpen
Related articles
Practical guides for common DIG tasks — DNS records, troubleshooting steps, and links to our free tools.
dig online tool, dig dns lookup, dig command alternative
DIG Online — DNS Query Without Terminal
Use an online DIG tool for A, MX, NS, TXT, and other record types when terminal dig is unavailable. Compare with DNS Checker all-records view.
Read article →dig ns lookup, nameserver check, dns ns record
DIG NS Lookup — Find Authoritative Nameservers
How to check NS records with DIG, delegation glue, mismatched registrar NS, and fixing DNS after hosting moves.
Read article →dig vs nslookup, nslookup alternative, dns troubleshooting tools
DIG vs nslookup — Which DNS Tool to Use
Compare dig and nslookup for DNS troubleshooting, output sections, scripting, and when an online DIG tool is enough.
Read article →dig mx troubleshooting, mx record dig query, mail routing dig
DIG MX Troubleshooting — Mail Routing Debug
Use DIG type MX to debug mail routing, priorities, and stale exchangers.
Read article →dig txt spf validation, spf dig lookup, verify spf record dig
Validate SPF with DIG TXT Queries
Confirm SPF strings with focused DIG TXT lookups before senders fail auth.
Read article →dig a record lookup, dig aaaa hosting migration, dig ip cutover
DIG A and AAAA Lookups for Hosting Cutover
Use DIG type A and AAAA to verify hosting migrations before and after TTL expiry.
Read article →dig caa record lookup, dig caa certificate, caa dig query
DIG CAA Queries Before Certificate Issuance
Check CAA records with DIG before your CA rejects issuance or a restrictive policy blocks renewal.
Read article →dig soa serial, soa record dig query, zone serial dig
Monitor Zone Changes with DIG SOA Serial
Track SOA serial increments after DNS edits to confirm authoritative zones updated.
Read article →