Skip to content
← All DNS record types
SOA

Start of Authority Record

SOA is a mandatory record describing zone parameters: serial, refresh, retry, expire, minimum TTL.

Syntax

zone TTL IN SOA primary_NS admin_email ( serial refresh retry expire minimum )

Example

example.com.    3600    IN    SOA    ns1.example.com. admin.example.com. (
    2026041601 ; serial
    7200       ; refresh
    3600       ; retry
    1209600    ; expire
    86400 )    ; minimum TTL

When to use

When: automatically created when a zone is provisioned. Rarely edited manually.

Common mistakes

Common mistakes: serial not bumped after changes — secondary NS misses updates. Admin email uses . instead of @.

Check SOA records for any domain:

Open DNS Lookup →

Related record types