

Record types at a glance
| Record | What it does | Typical use |
|---|---|---|
| A | Maps a hostname to an IPv4 address | mybrand.com → 185.232.x.x |
| AAAA | Maps a hostname to an IPv6 address | mybrand.com → 2a02:.... |
| CNAME | Aliases one hostname to another | www.mybrand.com → mybrand.com |
| MX | Tells the world which server handles mail for the domain | mybrand.com → mybrand.com (priority 0) |
| TXT | Free-form text. Used for SPF, DKIM, DMARC, and domain verification | SPF record for outgoing mail, Google site verification |
| SRV | Maps a service to a host and port | SIP, XMPP, Minecraft Bedrock |
| CAA | Restricts which Certificate Authorities can issue certs for the domain | Lock issuance to Let’s Encrypt only |
Add a record
The Zone Editor has two views. The list view atManage lets you see and edit everything. The shortcut buttons (+ A Record, + CNAME Record, + MX Record) on the main page open a one-shot form for the most common types.
Click Manage on the right domain
The Zone Editor for that domain opens, showing every record in the zone.



Click Add Record and pick a type
The dropdown next to Add Record lists every record type the editor supports. Pick the one you need.
Fill in the fields
The form changes based on the type. Common fields:
- Name. The hostname. Use
@for the root of the domain. Use a bare subdomain name likeblogforblog.mybrand.com. cPanel auto-appends the domain. - TTL. How long resolvers cache the value, in seconds.
14400(4 hours) is the default. Drop to300if you’re about to change a record and want fast propagation. - Type. Already set if you picked from the dropdown.
- Record (value). The IP, hostname, or text the record points at. Format depends on type.
Edit or delete a record
Each row in the Manage view has Edit and Delete buttons.- Edit opens an inline form. Change what you need, click Save Record.
- Delete removes the record. There’s a confirmation step.
NS records on subdomains
Subdomain NS delegations need a support ticket. The Zone Editor blocks NS records on subdomains by default to keep our nameservers authoritative for your zone. Some setups (a separate DNS provider for one subdomain, a customer who runs their own nameservers under a parent zone) need this. We’re happy to delegate, just open a ticket and let us know which subdomain points where.
Common record patterns
SPF for outgoing mail
ATXT record at @ that includes Noxity’s MailChannels relay.
- Name:
@ - Type:
TXT - Record:
v=spf1 a mx include:relay.mailchannels.net ~all - TTL:
14400
include:relay.mailchannels.net to the existing string. Don’t create a second SPF record on the same name.
DMARC
ATXT record at _dmarc.
- Name:
_dmarc - Type:
TXT - Record:
v=DMARC1; p=quarantine; rua=mailto:dmarc@mybrand.com - TTL:
14400
p=none if you want to monitor without affecting delivery, then move to quarantine and reject once your reports look clean. See Email Deliverability for the full setup.
Verify a domain (Google, Microsoft, Stripe)
ATXT record at the name the provider gives you.
- Name: usually
@or a token like_google-site-verification - Type:
TXT - Record: the exact string from the provider, paste it in.
- TTL:
14400is fine, drop to300if you want the check to come back fast.
CNAME a subdomain to another host
- Name:
shop - Type:
CNAME - Record:
mybrand.myshopify.com.(mind the trailing dot, cPanel adds it for you if you forget) - TTL:
14400
MX records for an external mail provider
Switch your incoming mail to Google or Zoho without leaving DNS.| Priority | Name | Record |
|---|---|---|
| 1 | @ | aspmx.l.google.com. |
| 5 | @ | alt1.aspmx.l.google.com. |
| 5 | @ | alt2.aspmx.l.google.com. |
| 10 | @ | alt3.aspmx.l.google.com. |
| 10 | @ | alt4.aspmx.l.google.com. |
Common issues
My change isn't visible from my computer
My change isn't visible from my computer
Resolvers cache. Test with dnschecker.org which queries from many networks, or query Cloudflare’s resolver directly with
dig @1.1.1.1 mybrand.com. If public resolvers see the new value, your local DNS cache is stale.I can't add an NS record on a subdomain
I can't add an NS record on a subdomain
Right, that’s intentional on Noxity DNS. Open a ticket with the subdomain and the target nameservers and we’ll delegate it for you.
"Multiple records of the same type at the same name"
"Multiple records of the same type at the same name"
Some record types (CNAME, SOA, the apex record) can’t coexist with others on the same name. Most others (A, MX, TXT) can. If the editor refuses, you’re probably trying to put a CNAME on a name that already has an A record, or two CNAMEs on the same hostname.
Two SPF records on the same domain
Two SPF records on the same domain
RFC says one SPF record per name. If you’re adding MailChannels and you already have an SPF for Google or Microsoft, edit the existing record to merge them, don’t add a second.
The record I want isn't in the dropdown
The record I want isn't in the dropdown
The Zone Editor exposes the common types. For
PTR, NAPTR, or anything else, open a ticket. Reverse DNS (PTR) needs to be set at the IP owner’s end anyway, which is us, so that’s a ticket regardless.
