What is DNS?

DNS translates domain names into IP addresses so browsers can find your website. CloudSonic manages DNS configuration for you as part of the Cloudflare Enterprise onboarding process.

CloudSonic
CloudSonic
Last Updated September 10, 2026

TL;DR DNS

DNS stands for Domain Name System and it is often described as the phone book of the internet. When you type a domain name like cloudsonic.com.au into your browser, your computer does not actually know where that website lives. It contacts a DNS server which looks up the domain name and returns the corresponding IP address of the server hosting that site. Your browser then connects to that IP address and loads the page. This lookup process happens in milliseconds and is invisible to the user. DNS also controls other records beyond just website addresses, including where your emails are delivered, whether your domain has security records like SPF and DKIM, and how traffic is routed through systems like Cloudflare Enterprise. CloudSonic manages DNS configuration for you as part of onboarding so you do not need to touch DNS settings manually.

How DNS Works

When you type a domain name into your browser, your computer first checks its local cache to see if it already knows the IP address for that domain. If not, it sends a query to a DNS resolver, usually provided by your internet service provider or a public service like Google's 8.8.8.8. The resolver checks its own cache and if it does not have the answer it begins a recursive lookup. It first contacts one of the internet's root nameservers which directs it to the nameserver responsible for the top-level domain, such as .com or .au. That nameserver directs it to the authoritative nameserver for the specific domain, which is where the actual DNS records are stored. The authoritative nameserver returns the IP address and the resolver passes it back to your browser, which then connects to that IP address and loads the page. This entire process typically takes between 20 and 120 milliseconds.

DNS records come in several types. An A record maps a domain to an IPv4 address. A CNAME record maps one domain name to another. MX records specify mail servers. TXT records are used for verification and security purposes including SPF and DKIM for email authentication. TTL, or Time to Live, controls how long DNS records are cached before a fresh lookup is required. When DNS is managed through Cloudflare Enterprise as it is on CloudSonic, DNS queries are resolved by Cloudflare's global network rather than a standard nameserver, which is significantly faster and adds an additional layer of security.


# Check what DNS records are set for a domain
dig cloudsonic.com.au ANY +short

# Check the A record specifically
dig cloudsonic.com.au A +short

# Check MX records for email routing
dig cloudsonic.com.au MX +short

# Check nameservers
dig cloudsonic.com.au NS +short

# Check TTL on a record
dig cloudsonic.com.au A +ttl

# Example zone file entries
cloudsonic.com.au.     300  IN  A      203.0.113.42
www.cloudsonic.com.au. 300  IN  CNAME  cloudsonic.com.au.
cloudsonic.com.au.     300  IN  MX  10 mail.cloudsonic.com.au.
cloudsonic.com.au.     300  IN  TXT    "v=spf1 include:_spf.cloudflare.com ~all"
Warning Changing DNS records incorrectly can take your website and email offline, always double-check record values and lower your TTL before making changes so you can recover quickly if something goes wrong.

Why DNS Matters for Your Website

DNS is the first step in every visit to your website and problems with DNS affect every visitor regardless of how fast your server is. If your DNS is slow, every page load starts with an avoidable delay before the browser can even begin connecting to your server. DNS lookup time contributes directly to TTFB and therefore to Core Web Vitals scores. If your DNS is unreliable or goes down, your website becomes unreachable even if your server is running perfectly. Visitors get DNS resolution errors and cannot reach your site at all. DNS is also a security surface. DNS hijacking and DNS spoofing attacks can redirect visitors to fraudulent versions of your site without touching your server. DNSSEC and DNS-level security features available through Cloudflare Enterprise protect against these attacks. Getting DNS right is foundational because every other performance and security improvement you make is irrelevant if visitors cannot resolve your domain reliably and quickly.

Frequently Asked Questions on DNS

What happens if my DNS goes down?

If your DNS provider goes down or your DNS records are misconfigured, visitors cannot resolve your domain to an IP address and your website becomes completely unreachable even if your server is running perfectly. This is why using a reliable DNS provider with high availability is as important as choosing reliable hosting. CloudSonic manages DNS through Cloudflare Enterprise which operates one of the fastest and most resilient DNS networks in the world.

How long does a DNS change take to propagate?

DNS changes propagate based on the TTL value of the record being changed. A record with a TTL of 3600 seconds may take up to an hour to update globally as cached records expire. Before making DNS changes, lowering the TTL to 300 seconds and waiting for the old TTL to expire first means changes propagate within five minutes. After the change is confirmed working, you can raise the TTL again.

What is the difference between an A record and a CNAME record?

An A record maps a domain name directly to an IPv4 IP address. A CNAME record maps a domain name to another domain name, which is then resolved to an IP address. CNAMEs are used for subdomains that should follow the same IP as the root domain, or for pointing to external services. You cannot use a CNAME on the root domain itself, only on subdomains, which is why A records are used for the apex domain.

Does Cloudflare act as my DNS provider on CloudSonic?

Yes. When you use CloudSonic, your domain's nameservers point to Cloudflare, which means Cloudflare handles all DNS resolution for your domain. This gives you access to Cloudflare's globally distributed DNS network which is one of the fastest in the world, with average global DNS resolution times under 10 milliseconds.