The A record (Address record) is the most fundamental DNS record type. It maps a domain name to an IPv4 address, allowing users to access websites using human-readable names instead of numeric IP addresses. When you type "example.com" in your browser, an A record tells the internet which server to connect to.
Check A records for any domain using our free DNS lookup tool.
Look Up A Records →
An A record creates a direct mapping between a domain name (like example.com) and an IPv4 address
(like 93.184.216.34). This is the foundation of how the internet's domain name system works.
The "A" stands for "Address" and specifically refers to IPv4 addresses (32-bit addresses written in dotted-decimal notation). For IPv6 addresses, the equivalent is the AAAA record.
An A record consists of these components:
| Component | Description | Example |
|---|---|---|
| Name | The domain or subdomain | example.com |
| Type | Record type identifier | A |
| TTL | Time to live (cache duration in seconds) | 3600 |
| Value | IPv4 address | 93.184.216.34 |
example.com. 3600 IN A 93.184.216.34
This record tells DNS resolvers that example.com points to IP address 93.184.216.34, with a cache time of 3600 seconds (1 hour).
Point your main domain to your web server:
example.com. 300 IN A 192.0.2.1
Create A records for subdomains pointing to different servers:
www.example.com. 300 IN A 192.0.2.1
blog.example.com. 300 IN A 192.0.2.2
api.example.com. 300 IN A 192.0.2.3
Add multiple A records for the same domain to distribute traffic across servers (round-robin DNS):
example.com. 300 IN A 192.0.2.1
example.com. 300 IN A 192.0.2.2
example.com. 300 IN A 192.0.2.3
| Record Type | Purpose | When to Use |
|---|---|---|
| A | Maps domain to IPv4 address | When you have a specific IPv4 address |
| AAAA | Maps domain to IPv6 address | When you have an IPv6 address |
| CNAME | Creates an alias to another domain | When pointing to another domain (not IP) |
The process varies by DNS provider, but generally:
Changes typically propagate within minutes to hours, depending on TTL settings and resolver caching.
Common issues and solutions:
DNS Explorer — Track A records and all DNS records across your entire domain portfolio. Built for IT teams, MSPs, and security professionals who need comprehensive DNS visibility.
Start free DNS Explorer trial14-day full-feature trial
Use our DNS Record Finder to look up A records for any domain.
Look Up A Records →