DNS records tell the internet where to find your website, email, and other services. If your domain uses GoZen Host nameservers, you manage DNS from cPanel’s Zone Editor.

Managing DNS records

Where to Edit DNS Records

If your domain is on GoZen nameservers:

  1. Log into cPanel
  2. Go to DomainsZone Editor
  3. Find your domain and click Manage

If your domain is at another registrar:

You’ll edit DNS at that registrar’s control panel. The record types and values are the same - only the interface differs.

Record Types

TypePurposeExample
APoints a domain to an IPv4 addressyourdomain.com → 192.168.1.1
AAAAPoints a domain to an IPv6 addressyourdomain.com → 2001:db8::1
CNAMEAlias - points one name to anotherwww → yourdomain.com
MXMail delivery - where email goesyourdomain.com → mail.yourdomain.com (priority 0)
TXTText data - used for SPF, DKIM, DMARC, verificationv=spf1 +a +mx ~all
SRVService records - used by some apps (e.g., Microsoft 365)Varies
CAACertificate Authority Authorization - who can issue SSL for your domain0 issue "letsencrypt.org"
NSNameserver delegationns1.gozenhost.com

Adding a Record

  1. In Zone Editor, click Add Record
  2. Select the record type
  3. Fill in:
    • Name - the hostname (e.g., @ for the root domain, www for the www subdomain, mail for the mail subdomain)
    • TTL - Time to Live in seconds (3600 = 1 hour is a safe default)
    • Value - the IP address, hostname, or text content
  4. Click Save Record

Common DNS Setups

Point your domain to your server

  Type: A
Name: @
Value: your-server-ip
TTL: 3600
  
  Type: A
Name: www
Value: your-server-ip
TTL: 3600
  

Or use a CNAME for www:

  Type: CNAME
Name: www
Value: yourdomain.com
TTL: 3600
  

Set up email

If you’re using GoZen Host email (cPanel):

  Type: MX
Name: @
Value: mail.yourdomain.com
Priority: 0
TTL: 3600
  

If you’re using a third-party email service (Google Workspace, Microsoft 365), use their MX records instead. They’ll provide the exact values.

Verify domain ownership (Google, Microsoft, etc.)

Most services give you a TXT record to add:

  Type: TXT
Name: @
Value: google-site-verification=xxxxxxxxxxxx
TTL: 3600
  

SPF record for email

  Type: TXT
Name: @
Value: v=spf1 +a +mx +ip4:your-server-ip ~all
TTL: 3600
  

Editing and Deleting Records

In Zone Editor:

  • Edit: Click the pencil icon next to the record, change the value, click Save
  • Delete: Click the trash icon. Be careful - deleting the wrong record can break your email or website

DNS Propagation

After changing a DNS record, it takes time for the change to spread across the internet. This is called propagation.

TTL ValuePropagation Time
300 (5 min)Usually under 10 minutes
3600 (1 hour)Up to 1–2 hours
86400 (24 hours)Can take up to 48 hours

You can check propagation and validate your DNS records at GoZen DNS Inspector. It checks A, MX, TXT (SPF/DKIM/DMARC), and nameserver health in one scan.

Troubleshooting

ProblemFix
Website not loading after DNS changeCheck propagation - run a scan at GoZen DNS Inspector
Email not workingVerify MX records point to the correct mail server
SSL not issuingCheck that A record points to the correct IP and DNS has propagated
“Domain not pointed to this server” in cPanelThe A record doesn’t match your server IP - update it
Changes not taking effectCheck TTL - old cached values need to expire first

What to Do Next

Last updated 05 Apr 2026, 00:00 +0200. history

Was this page helpful?