DNS Records
Last updated
/jabali-panel/domains/<id>/dns. The records inside a single DNS zone you own.
Record types you can add
- A: IPv4 address.
- AAAA: IPv6 address.
- CNAME: alias to another DNS name.
- MX: mail exchanger; preference plus the target host.
- TXT: free-text record (SPF, DMARC, MTA-STS policy descriptor, domain verification tokens for third-party services).
- SRV: service location record (autodiscover, SIP, XMPP).
- CAA: Certification Authority Authorization; restricts which CAs may issue certs for the domain.
- NS: delegation to other nameservers (only for subdomains within the zone).
SOA is generated and managed by the panel; you do not edit it directly.
Adding a record
Click Add record → pick a type → fill in fields. Validation enforces type-correct content (an A record requires a valid IPv4, a CAA record requires a recognised tag).
On save, the agent:
- Inserts the record into the PowerDNS MariaDB backend.
- Issues
pdns_control purge <zone>$so subsequent lookups bypass any stale cache (PowerDNS caches answers for 60 seconds by default). - Bumps the zone serial automatically.
Convergence is sub-second.
Editing and deleting
Same actions, same cache purge. Records that the panel manages automatically (the default A and AAAA for the apex, the DKIM TXT records when mail is enabled) are marked System-managed and cannot be edited from this page, they re-render from the panel’s source of truth on every reconciler tick.
DNSSEC
If DNSSEC is enabled for the zone (see DNSSEC), records are signed on the fly. Adding or removing a record does not require a key roll; the zone signer re-signs the affected RRset.
Common record patterns
- Email: MX 10 mail.example.com (if mail is enabled, the panel adds this automatically), TXT
"v=spf1 include:_spf.<panel-hostname> -all", TXT_dmarc "v=DMARC1; p=quarantine; rua=mailto:postmaster@example.com". - Domain verification: TXT records of the form
google-site-verification=...,apple-domain-verification=.... Paste exactly as the third party requests. - Static IP: A
@ -> <ip>, AAAA@ -> <ipv6>, CNAMEwww -> @.
Why no zone-file import
The current page is record-oriented. Zone-file import (BIND-style) is available via the migration pipelines (cPanel, DirectAdmin, Hestia) but not on this page. Paste records one by one for ad-hoc additions.