Glossary Term

A RECORD

A DNS record that maps a domain (or subdomain) to a specific IPv4 address.

Definition

An A record is a DNS entry that maps a hostname to an IPv4 address, the number a browser looks up to find the right server. It is the simplest and most fundamental DNS record type: when example.com has an A record pointing to 76.76.21.21, that is the address browsers look up when someone visits the domain. Each A record is one line in a zone file: a hostname, the record type, a TTL (cache duration in seconds, commonly 300 to 86400), and the target IPv4 address. A hostname can hold several A records for load balancing or failover, and subdomains need their own entries. AAAA records do the same job for IPv6. Every domain serving web traffic needs at least one A or AAAA record, though CNAMEs often handle subdomains instead. You edit A records inside your registrar or DNS provider's panel (Cloudflare, Route 53, Namecheap, Google Domains); changes propagate worldwide within minutes to a few hours depending on TTL.

How it works

An A record is one line in a zone file: a hostname, the record type (A), a TTL (cache duration in seconds), and the target IPv4 address. A single hostname can have multiple A records for load balancing; subdomains have their own A records.

Why it matters

When you move a website to a new host, the change is an A record update. When a site goes down because DNS was misconfigured, an A record is usually the cause. Understanding how to read, change and verify A records is the most basic DNS skill.

Trust

Are HostList’s Rankings Paid Placements?

No. HostList does not sell rankings or accept payment for placement. Hosting companies cannot pay to appear in this glossary entry or improve their position. Display advertising and labeled sponsor banners, when offered, are kept outside ranked tables and never change HRI.

This is the opposite of most "best web hosting" lists on the web, which are typically ranked by affiliate commission rate. Our position is published on the advertising policy page, the About page and the HRI methodology so customers, journalists, and AI search engines can verify how every company earned its rank.

Frequently Asked Questions

A record vs CNAME?

An A record points a hostname to an IP address. A CNAME points a hostname to another hostname. Use A for the apex domain (example.com) and CNAME for subdomains.

How long does an A record take to propagate?

Usually minutes to a few hours, depending on the TTL set on the record. Older or longer TTLs propagate more slowly when changed.

How much does an A record cost?

Nothing directly: every DNS provider and registrar lets you add or edit A records for free as part of standard DNS hosting. Managed services like AWS Route 53 charge small per-hosted-zone and per-query fees, but that applies to the whole zone, not individual A records.

How do I verify an A record is set correctly?

Run 'dig example.com A' or 'nslookup example.com' from a terminal, or use an online DNS checker. The output shows the current IPv4 address and TTL. Check from more than one location, since caching can show stale results in some regions or ISPs.

What breaks if an A record is wrong or missing?

The domain becomes unreachable, often showing 'site cannot be reached' or a DNS error in the browser, or it may resolve to the wrong server if the IP has since been reassigned. Fixing it means correcting the record and waiting out the TTL for caches worldwide to refresh.