Pre-requirements

  • Access to your cPanel or Plesk account.
  • Basic knowledge of DNS and record types.
  • For certain record types like NS and SOA, changes can only be made at the root level and require a support ticket submission.

Introduction

This table summarizes the DNS record types supported by our systems, including cPanel, Plesk, Webuzo, and WP Squared. To manage these records, log into your hosting control panel (e.g., cPanel or Plesk), go to the Zone Editor, and select the domain you want to modify.

DNS Record Types

Record Type Description Linux Command Windows Command
A Maps hostnames to their IPv4 address.
dig example.com A
nslookup example.com
AAAA Maps hostnames to their IPv6 address.
dig example.com AAAA
nslookup -type=AAAA example.com
CAA Specifies which Certificate Authorities (CAs) are allowed to issue certificates for a domain.
dig example.com CAA
nslookup -type=CAA example.com
CNAME Alias name record that points one domain to another.
dig example.com CNAME
nslookup -type=CNAME example.com
MX Mail exchange record, used to route emails to mail servers.
dig example.com MX
nslookup -type=MX example.com
NAPTR Naming authority pointer record used in applications like VoIP.
dig example.com NAPTR
nslookup -type=NAPTR example.com
NS Delegates a DNS zone to an authoritative name server.
dig example.com NS
nslookup -type=NS example.com
PTR Used for reverse DNS lookups, mapping an IP to a hostname.
dig -x 203.0.113.2
nslookup 203.0.113.2
SOA Start of authority record, specifies authoritative info about a DNS zone.
dig example.com SOA
nslookup -type=SOA example.com
SPF Sender Policy Framework record, used to prevent email spoofing.
dig example.com TXT (to verify SPF)
nslookup -type=TXT example.com (to verify SPF)
SRV Service locator record used by VoIP and other services to locate servers.
dig example.com SRV
nslookup -type=SRV example.com
TXT Text record, often used for verification or security purposes like SPF or DKIM.
dig example.com TXT
nslookup -type=TXT example.com

Gotchas to Avoid

  • Incorrect Record Types: Ensure that you are creating the correct type of DNS record for your needs. For example, don't use a CNAME when an A record is required.
  • DNS Propagation Delays: After making DNS changes, remember that it may take up to 48 hours for changes to propagate globally.
  • NS and SOA Changes: These can only be updated at the root level. Submit a support ticket if you need assistance with these record types.

This guide outlines the DNS record types supported by our systems and how to manage them in your control panel. Use the correct command-line tools to verify your records on Linux, macOS, or Windows. If you encounter any issues or need further assistance, don’t hesitate to contact our support team.

Did this answer help? 0 People found this helpful (0 Votes)