The foundation of domain name resolution to an IP address.
The DNS A (Address Record) is the most fundamental and widely used type of DNS record. It establishes the mapping between a domain name and an IPv4 address. When a user types your domain in their browser, it is the A record that tells the browser which IP address to direct the request to.
Without a properly configured A record, your website would be inaccessible via its domain name. Users would need to know your server's IP address to access it - which is impractical. The A record is literally the gateway to your online presence.
Monitoring your A records is crucial for detecting unauthorized changes (DNS hijacking), configuration errors after a migration, or DNS propagation issues. MoniTao alerts you instantly if the IP associated with your domain changes.
The A record is a DNS resource record type that maps a domain name to an IPv4 address:
The A record is at the core of your site's accessibility:
Here are the steps to properly configure an A record:
Here are configuration and verification examples for A records:
; Configuration in a DNS zone
example.com. IN A 93.184.216.34
www.example.com. IN A 93.184.216.34
api.example.com. IN A 93.184.216.35
; Verification with dig
$ dig example.com A +short
93.184.216.34
; Verification with nslookup
$ nslookup example.com
Name: example.com
Address: 93.184.216.34
; Round-robin DNS (multiple IPs)
example.com. IN A 93.184.216.34
example.com. IN A 93.184.216.35
The standard format includes the hostname, class (IN for Internet), type (A), and IPv4 address. Use dig or nslookup to verify current resolution.
Follow these recommendations for optimal configuration:
The A record maps to an IPv4 address (32 bits, format xxx.xxx.xxx.xxx), while the AAAA record maps to an IPv6 address (128 bits, format xxxx:xxxx:...). Both often coexist to support all connection types.
Yes, this is round-robin DNS. DNS resolvers return IP addresses in random or sequential order, allowing basic load distribution. However, this is not true load balancing as it doesn't check server health.
Propagation depends on the previous TTL and DNS caches. With a 3600-second TTL, complete propagation can take 1-24 hours. Reduce TTL before a planned change to speed up propagation.
Both work. A CNAME www pointing to @ is easier to maintain (only one IP to change). A direct A record is slightly faster (one less resolution). For most sites, the difference is negligible.
Use dig or nslookup to verify that resolution returns the expected IP. Test from multiple geographic locations to verify propagation. MoniTao can automate this monitoring.
Your domain will no longer resolve to any IP. Visitors will see DNS errors (NXDOMAIN or SERVFAIL) until the record is restored and propagated.
The A record is the foundation of DNS resolution. Correct configuration and continuous monitoring are essential to ensure your site's accessibility. Don't neglect this crucial element of your infrastructure.
With MoniTao, monitor your A records in real-time and be alerted immediately when changes occur. Protect your domain against configuration errors and DNS hijacking attempts.
Start free, no credit card required.