Back to all questions

What is the Difference Between an A Record and a CNAME Record?

Rostyslav Pidgornyi
DNS Records
August 21, 2024

An A Record maps a domain name to an IP address, while a CNAME Record maps a domain name to another domain name. The A Record directly ties your domain to where your website lives, whereas the CNAME points your domain to another domain, which then resolves to the final IP address.

While they might seem similar at first glance, they serve different purposes, and knowing when to use each can save you a lot of headaches.

DNS A Records

First up is the A Record. Think of this as the most straightforward DNS record. When someone types your domain name into their browser, the A Record is what translates that human-readable name (like example.com) into an IP address (like 192.168.1.1). This is the actual address of the server where your website is hosted.

Let’s say you have a website hosted on a server with the IP address 203.0.113.10. If you want people to find your site by typing in "yourwebsite.com," you'd create an A Record for "yourwebsite.com" that points to 203.0.113.10. When someone enters your domain, the DNS system checks the A Record and directs them to your server.

Now, why is this important? Because without an A Record, no one can reach your website using your domain name. They’d have to know the IP address directly, which is hardly practical. So, in essence, the A Record is the bridge between your domain name and the actual location of your website.

When to Check DNS A Records

Sometimes, things go wrong, and your website isn't loading as it should. When that happens, one of the first things I do is check the DNS A Records. 

This ensures that they are pointing to the correct IP address. If you've recently moved your website to a new server, updating the A Record is crucial; otherwise, visitors will be sent to the old server (or nowhere at all if that server's gone offline).

What About CNAME Records?

CNAME Records, on the other hand, serve a different purpose. While an A Record points a domain name to an IP address, a CNAME Record points a domain name to another domain name.

For example, imagine you have several subdomains, like "blog.yourwebsite.com" or "shop.yourwebsite.com," and you want them all to point to the same server as "yourwebsite.com." 

Instead of creating individual A Records for each subdomain (which could be a hassle if you ever change your server’s IP), you can create a CNAME Record. This CNAME Record will point "blog.yourwebsite.com" to "yourwebsite.com." The DNS system will then check the A Record of "yourwebsite.com" and direct users to the correct IP.

Here's why this is useful: If you ever change the IP address for "yourwebsite.com," you only need to update the A Record for that main domain. All the CNAME Records will automatically follow suit, making your life much easier.

CNAMEs in the Wild

A real-world example? Let’s say you’re using a third-party service like Shopify for your online store. Shopify provides you with a domain like "yourstore.shopify.com." You want customers to access your store through "shop.yourwebsite.com" instead. 

To do this, you’d set up a CNAME Record that points "shop.yourwebsite.com" to "yourstore.shopify.com." When someone types in "shop.yourwebsite.com," the DNS system uses the CNAME Record to direct them to "yourstore.shopify.com," where Shopify's DNS records then take over to guide them to the right IP address.

Key Differences Between A Records and CNAME Records

Now, let's nail down the differences:

  1. Direct Mapping vs. Indirect Mapping: An A Record maps a domain to an IP address directly. In contrast, a CNAME Record maps a domain to another domain, which then resolves to an IP address.
  2. Use Cases: Use A Records when you need to map a domain (or subdomain) directly to an IP address. Use CNAME Records when you want to map one domain to another, especially when multiple domains or subdomains need to point to the same place.
  3. Maintenance: If you anticipate changing the IP address of your domain often, CNAME Records can simplify your DNS management by reducing the number of records you need to update.

If you wanna dive deeper, check out this explainer

When You Should Use A Records

There are a few situations where you'll want to stick with A Records:

  • Root Domains: If you're pointing a root domain (like "yourwebsite.com") to an IP address, you’ll need to use an A Record. CNAME Records can't be used for root domains because of DNS restrictions.
  • Single IP Address: If you only need to point one domain or subdomain to a single IP, an A Record is straightforward and does the job well.

When You Should Use CNAME Records

CNAME Records are perfect for:

  • Subdomains: If you're managing multiple subdomains that should all point to the same place, a CNAME Record can save you from updating multiple A Records whenever the IP changes.
  • External Services: If you're using an external service (like a content delivery network, or an e-commerce platform), you'll often use CNAME Records to point to the domain provided by the service.

Potential Pitfalls

While CNAMEs are handy, they’re not without potential downsides:

  • Performance: Because a CNAME adds an extra lookup step in the DNS resolution process, it can slightly increase the time it takes for a user to reach your site. It’s usually not a big deal, but it’s something to be aware of if performance is critical.
  • Complexity: If not managed properly, CNAMEs can make your DNS configuration more complex. If you're pointing one CNAME to another, which then points to another, you might end up with a confusing and difficult-to-maintain setup.