Home
Lookup Tools
Analysis
Bulk & Enterprise
Resources
Close

A Record Most Common

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.

Look Up A Records

Check A records for any domain using our free DNS lookup tool.

Look Up A Records →

What Is an A Record?

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.

A Record Format

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 A Record

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).

Common A Record Use Cases

1. Root Domain (Apex)

Point your main domain to your web server:

example.com.    300    IN    A    192.0.2.1

2. Subdomains

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

3. Multiple A Records (Load Balancing)

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

A Record Best Practices

A Record vs. Other Record Types

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)

How to Add an A Record

The process varies by DNS provider, but generally:

  1. Log in to your DNS provider or domain registrar
  2. Navigate to DNS settings or Zone Editor
  3. Add a new record with type "A"
  4. Enter the hostname (@ for root, or subdomain name)
  5. Enter the IPv4 address
  6. Set the TTL (or use default)
  7. Save the record

Changes typically propagate within minutes to hours, depending on TTL settings and resolver caching.

Troubleshooting A Records

Common issues and solutions:

Check Your A Records

Use our DNS Record Finder to look up A records for any domain.

Look Up A Records →