DNS records tell the internet where your website and services live. When you manage a domain, you usually work with these common record types:
A record:
– Points a hostname to an IPv4 address.
Example: blog.example.com -> 204.12.249.20
AAAA record:
– Points to an IPv6 address.
CNAME:
– Points one hostname to another hostname.
Example: www.example.com -> example.com
MX:
– Email routing (where mail should be delivered).
TXT:
– Verification and email security (SPF, DKIM, DMARC), Google site verification, etc.
Typical setup for a blog subdomain:
– Create an A record: blog -> your server IP
– Issue SSL after DNS resolves
– Ensure HTTPS works and redirects are correct
If a site is not loading after DNS changes:
– Check propagation (can take time)
– Confirm you used the right record type
– Check if proxy/CDN is enabled
– Make sure SSL is issued for that hostname
DNS is simple once you learn the basics—most issues come from wrong record values or conflicting records.