DNS Robot - DNS Lookup

Understanding DNS and DNS Records

DNS (Domain Name System) is a hierarchical system that translates human-readable domain names like www.example.com into IP addresses like 192.0.2.1, which are used by computers to identify each other on the network. DNS is essential for the functionality of the internet, allowing users to access websites using easy-to-remember domain names.

Types of DNS Records

DNS records are stored in DNS servers and provide important information about a domain, including its IP address, mail servers, and other domain-specific details. Here are some common types of DNS records:

A Record (Address Record)

The A record maps a domain name to an IPv4 address. It is one of the most common types of DNS records and is essential for connecting domain names to IP addresses.

Usage: A records are used to point a domain or subdomain to an IP address.

Example: example.com. IN A 93.184.216.34

AAAA Record (IPv6 Address Record)

The AAAA record maps a domain name to an IPv6 address. With the increasing adoption of IPv6, AAAA records are becoming more common.

Usage: AAAA records are used to point a domain or subdomain to an IPv6 address.

Example: example.com. IN AAAA 2606:2800:220:1:248:1893:25c8:1946

MX Record (Mail Exchange Record)

The MX record specifies the mail servers responsible for receiving email on behalf of a domain. It includes the priority of the mail servers, allowing for backup servers in case the primary server fails.

Usage: MX records are used to direct email to mail servers for a domain.

Example: example.com. IN MX 10 mail.example.com.

NS Record (Name Server Record)

The NS record specifies the authoritative DNS servers for a domain. These servers are responsible for providing the correct DNS information for the domain.

Usage: NS records are used to delegate a domain or subdomain to a set of DNS servers.

Example: example.com. IN NS ns1.example.com.

TXT Record (Text Record)

The TXT record allows domain administrators to store text information in the DNS. It is often used for email validation, domain ownership verification, and other purposes.

Usage: TXT records are used for various purposes, including SPF, DKIM, and DMARC configurations for email authentication.

Example: example.com. IN TXT "v=spf1 include:_spf.example.com ~all"