What is DNS lookup and what does this page do?
DNS lookup learns which IP, mail host or text record a hostname points to. Browsers ask A/AAAA first; mail clients ask MX; receivers read TXT for SPF.
IPTOOL queries the public resolver you pick (Cloudflare 1.1.1.1, Google 8.8.8.8, Quad9 9.9.9.9, …) from this Linux host. That is not your home ISP DNS, so answers can differ briefly from local nslookup. Free, no account.
Examples
- Quick query
ownhost.net + ALLFetches common types in parallel, then offers the full report link.- Single type
example.com + MXLists mail exchangers only.- URL report
iptool.tr/ownhost.netintoDNS-style page with parent NS, glue, www and health checks.
Why resolver and TTL matter
Resolvers cache answers. TTL is how many seconds they may keep the reply. Right after you change an A record, Google may still show the old IP while Cloudflare shows the new one — that is propagation lag, not an outage.
Compare the same name on two resolvers, or open the DNS Propagation board. Quad9 may filter some malicious names; Cloudflare and Google are general-purpose.
Examples
- Low TTL
TTL 300Changes spread in ~5 minutes; query load rises.- High TTL
TTL 86400Stale answers can linger up to a day.
How to read the result
No A/AAAA means the web name does not resolve. No MX means inbound mail fails. No NS means the zone is not published. Multiple A records are normal for round-robin or anycast. If TXT has no v=spf1, use the SPF tool; _dmarc lives on the DMARC checker.
www and the apex (example.com) are different names: one may be CNAME, the other A. The full report checks both. Missing AAAA alone is not a hard failure.
Examples
- Site up, no mail
A present · MX missingThe website opens; the domain cannot receive mail.- CDN apex
A → anycast IPSeveral A records and a short TTL are common.