What is A Record?

An A record is a DNS entry that maps a domain name to an IPv4 address, telling browsers and servers where to reach it.

An A record, short for Address record, is the most fundamental type of DNS entry. It maps a hostname such as example.com or www.example.com to a specific IPv4 address, allowing browsers, mail servers, and any other client to translate the name into a numeric address they can actually connect to.

When you type a domain into a browser, the resolver looks up the A record to find the server hosting the website. A domain can have multiple A records pointing to several IP addresses, which providers use for load balancing and redundancy by distributing requests across servers.

The IPv6 equivalent of an A record is the AAAA record, which maps a name to a 128-bit IPv6 address. Modern domains commonly publish both A and AAAA records so that clients on either protocol can reach them. A records are also what CNAME chains ultimately resolve to.

In email contexts, A records play a supporting role. If a domain has no MX record, mail servers fall back to its A record to attempt delivery, so an A record can act as an implicit mail destination. Checking a domain's A record is also a quick way to confirm it resolves to a live server at all.

Examples

  • example.com A 93.184.216.34 — maps the domain to an IPv4 address
  • Multiple A records for one host to balance traffic across servers
  • A domain with an A record but no MX record, used as a fallback mail target

Frequently asked questions

Free tools for working with A Record

Related terms