DNS records tell the internet where to find your website, mail, and other services. Updating them correctly is essential when migrating hosts, pointing a domain to SerVee IT, or adding subdomains. This guide covers record types, where to edit them, and how to avoid common mistakes.
Understand DNS Record Types
Most website changes involve these record types:
- A — Maps a hostname to an IPv4 address (e.g.
@orwww→ your server IP). - AAAA — Same as A, for IPv6.
- CNAME — Alias; points one name to another (e.g.
www→example.com). Cannot be used on the apex/root in all setups. - MX — Mail delivery; includes priority values.
- TXT — Verification, SPF, DKIM, DMARC, and other text data.
Reference: Cloudflare: DNS records explained.
Locate Your DNS Zone
DNS is managed wherever your domain’s nameservers point. Find them with:
dig NS example.com +shortTypical locations:
- Registrar (GoDaddy, Namecheap, etc.) — DNS panel in domain settings.
- DNS host — Cloudflare DNS, Route 53, etc.
- Hosting control panel — cPanel Zone Editor, Plesk DNS settings.
Update A and CNAME for Websites
Point Apex and www
For a site on a dedicated IP at SerVee IT:
- Set A for
@(apex) to your server IPv4. - Set A for
wwwto the same IP, or use a CNAME fromwwwtoexample.comif your DNS provider supports it at www.
If using a proxy/CDN, follow the provider’s recommended record (often CNAME to their hostname). See Cloudflare proxied records.
Lower TTL Before Migration
24–48 hours before a cutover, reduce TTL on records you will change (e.g. from 3600 to 300 seconds) so stale caches expire faster.
Email and TXT Records
When moving mail to Google Workspace, Microsoft 365, or SerVee IT mail:
- Update MX records to the new provider’s values and priorities.
- Add or update TXT for SPF (e.g.
v=spf1 include:...). - Add DKIM CNAME/TXT as required by your mail host.
Verify After Saving
After saving in the DNS panel, confirm propagation from multiple resolvers:
dig example.com A +short
dig www.example.com A +short
dig example.com MX +shortUse public checkers only as a secondary view; authoritative answers come from dig @nameserver against your zone’s NS.
Nameserver Changes
Switching nameservers (e.g. to Cloudflare or Plesk) is a registrar-level change. Allow up to 48 hours for full propagation, though many updates complete sooner. During NS delegation changes, avoid editing records in two places at once.
Summary
Identify where your zone is hosted, lower TTL before migrations, update A/CNAME for web and MX/TXT for mail, then verify with dig. SerVee IT provisioning emails include the exact A record IP and any required hostnames—use those values in your DNS panel and confirm before closing a migration ticket.