MuhammadLab
Browser-onlyDNS recordsZone file builder

DNS Record Formatter — Generate DNS Zone Records

Build common DNS records such as A, AAAA, CNAME, MX, and TXT, then export a clean zone-style text file. Good for networking classes, infrastructure labs, and quick DNS drafting.

Best for

Zone planning

Records

A, AAAA, CNAME, MX, TXT

Output

Zone-style text

Record workspace

Choose a record type, fill in its fields, and add it to the zone preview.

Maps a hostname to an IPv4 address.

A record needs a valid IPv4 address.

Zone summary

Keep track of how many records you have and what kinds of DNS entries are in the current draft.

Total records

4

A + CNAME

2

MX records

1

TXT records

1

Current records

A

@

@ 3600 IN A 203.0.113.10

CNAME

www

www 3600 IN CNAME example.com.

MX

@

@ 3600 IN MX 10 mail.example.com.

TXT

@

@ 3600 IN TXT "v=spf1 include:_spf.google.com ~all"

Zone preview

@ 3600 IN A 203.0.113.10
www 3600 IN CNAME example.com.
@ 3600 IN MX 10 mail.example.com.
@ 3600 IN TXT "v=spf1 include:_spf.google.com ~all"

How to read the records

Hostname and TTL

The name identifies which label you are defining, and TTL controls how long resolvers may cache the answer.

MX records

Mail exchangers use a priority number. Lower numbers are preferred first.

TXT records

TXT records are widely used for SPF, ownership verification, DKIM helpers, and service policies.