DNS Zone Management in RemarkablePanel โ
Accessing the DNS editor โ
Open the website โ Domains โ your domain โ DNS.
The DNS editor shows all records for the domain with their type, name, value, and TTL.
Common record types โ
A record โ point a hostname to an IP โ
Type: A
Name: yourdomain.com
Value: YOUR_SERVER_IP
TTL: 300Type: A
Name: www
Value: YOUR_SERVER_IP
TTL: 300CNAME โ alias to another hostname โ
Type: CNAME
Name: shop
Value: stores.shopify.com
TTL: 3600Cannot be used for the root domain (@ or bare domain). Use an A record for the root.
MX โ mail routing โ
Type: MX
Name: yourdomain.com
Priority: 10
Value: mail.yourdomain.com
TTL: 3600TXT โ SPF, DKIM, DMARC, verification โ
Type: TXT
Name: yourdomain.com
Value: v=spf1 ip4:YOUR_IP include:mailchannels.net ~all
TTL: 3600Adding a record โ
- In the DNS editor, click Add Record.
- Select the record type.
- Enter the name โ for the root domain enter
@or leave blank. For subdomains enter just the subdomain part (e.g.mailnotmail.yourdomain.com). - Enter the value.
- Set TTL โ use 300 (5 minutes) when making changes so they propagate quickly, increase to 3600 once stable.
- Click Save.
Editing a record โ
Click the record โ modify the value โ Save. The change propagates after the TTL expires.
Deleting a record โ
Click the record โ Delete โ Confirm.
Deleting MX records stops email
Deleting MX records immediately breaks email delivery for the domain. Always verify you have the correct MX records in place before removing old ones. Verify DNS propagation โ
bash
# Check A record
dig yourdomain.com A +short
# Check MX
dig yourdomain.com MX +short
# Check from a different resolver
dig @8.8.8.8 yourdomain.com A +shortOr use dnschecker.org to check from multiple global locations.

