DNS Record Lookup
Check DNS records for any domain name.
Results will be displayed here...
Comprehensive Guide to DNS Records
The Domain Name System (DNS) is often called the "phonebook of the internet." It translates human-readable
domain names (like findaname.live) into machine-readable IP addresses (like
192.0.2.1). Understanding DNS records is crucial for website owners, IT professionals, and
developers. This guide breaks down the most critical components of DNS management.
Deep Dive into Record Types
A Record (Address)
The most fundamental record. It maps a domain to an IPv4 address. Without an A record, users cannot reach your website via its domain name.
Example: example.com -> 93.184.216.34
AAAA Record (IPv6 Address)
Similar to the A record, but for IPv6 addresses. As the internet runs out of IPv4 addresses, AAAA records are becoming increasingly important for future-proofing your site.
Example:
example.com -> 2606:2800:220:1:248:1893:25c8:1946
MX Record (Mail Exchange)
Specifies the mail server responsible for accepting email on behalf of a domain domain. You can have multiple MX records with different priorities to ensure email delivery redundancy.
CNAME (Canonical Name)
Maps an alias name to a true or "canonical" domain name. It is often used to map a
subdomain like www to the root domain.
TXT Record (Text)
Originally for human-readable text, now primarily used for verification (Google Search Console) and email security protocols like SPF, DKIM, and DMARC to prevent spoofing.
NS Record (Nameserver)
Delegates a DNS zone to use the given authoritative name servers. These records tell the internet which servers hold the "truth" about your domain's DNS configuration.
Troubleshooting Common DNS Issues
- Propagation Delays: DNS changes can take up to 48 hours to spread globally. If you recently changed records and don't see them, wait a few hours and try again.
- TTL (Time to Live): This value determines how long a record is cached by DNS resolvers. A high TTL (e.g., 86400 seconds = 24 hours) means changes take longer to propagate. Lower the TTL before making migration changes.
- Email Delivery Failures: Often caused by incorrect MX records or missing SPF/DKIM records in your TXT settings. Use this tool to verify your MX records point to your email provider (e.g., Google Workspace, Outlook).
- "Server Not Found" Errors: This usually points to a missing or incorrect A record. Ensure your domain points to the correct public IP address of your web server.