Understanding DNS
DNS (Domain Name System) translates human-readable domain names into IP addresses that computers use to identify each other. Managing DNS records allows you to control where your domain points and how services like email work.
Accessing DNS Zone Editor
- Log in to EGPNL
- Go to Domains
- Click on your domain name
- Select DNS Zone or DNS Editor
DNS Record Types
A Address Record
Points a domain or subdomain to an IPv4 address. Most basic and common record type.
Use for: Pointing your domain to your server
AAAA IPv6 Address Record
Same as A record but for IPv6 addresses.
Use for: IPv6 connectivity
CNAME Canonical Name Record
Points a subdomain to another domain name (alias). Cannot be used on root domain.
Use for: Creating aliases, pointing www to root domain
MX Mail Exchange Record
Specifies mail servers responsible for receiving email. Requires priority value.
Use for: Email delivery configuration
TXT Text Record
Contains text information for various purposes like domain verification and email authentication.
Use for: SPF, DKIM, DMARC, domain verification
NS Nameserver Record
Specifies authoritative nameservers for your domain.
Use for: Delegating DNS to specific nameservers
Common DNS Configurations
Basic Website Setup
A @ → Your Server IP- Points root domain to serverA www → Your Server IPorCNAME www → @- Points www subdomain
Email Setup
MX @ → mail.yourdomain.com (priority 10)A mail → Your Server IPTXT @ → "v=spf1 a mx ~all"(SPF record)
Subdomain Setup
A blog → Your Server IP- Creates blog.yourdomain.comCNAME shop → shopify.com- Points shop subdomain to Shopify
Adding a DNS Record
- Open the DNS Zone Editor for your domain
- Click Add Record
- Select the record type (A, CNAME, MX, etc.)
- Enter the name (@ for root, or subdomain name)
- Enter the value (IP address, hostname, or text)
- Set TTL (Time To Live) - default 3600 is usually fine
- Click Save
Editing and Deleting Records
To modify existing records:
- Find the record in your DNS zone
- Click the Edit (pencil) icon
- Make your changes
- Click Save
To delete a record, click the Delete (trash) icon and confirm.
Was this article helpful?