DNS Outage Runbook for Small Teams

A DNS outage is the quietest way to lose a whole business day: no errors in your own logs, no alerts from your own monitoring — because the thing that broke is upstream of every request. The honest runbook has four parts: watch the domain itself, keep a tested copy of your zone, lower TTLs before changes instead of during them, and know the 10-minute restore path by heart.

1. Monitor the domain, not just the site

Your site monitor checks https://www and gets an answer — so DNS must be fine, right? No: it answered because it resolved. The DNS checks that matter are cheap and upstream:

CheckHow oftenWhat it catches
Resolve apex + www + one API host against 8.8.8.8 and 1.1.1.1Every 5 minutesZone edits gone wrong, nameserver failures
Domain expiry dateDailyThe auto-renew that silently failed (dead card, expired email on the registrar account)
Nameserver (NS) set matches what the registrar saysDailyAccidental NS changes, hijack attempts

A 5-line cron script with dig and the WHOIS date covers all three. An outage caught here costs minutes; the same outage caught by a customer tweet costs the afternoon.

2. Keep a tested copy of your zone (the part everyone skips)

When DNS breaks, you will need to re-publish records fast — at a second provider, because the primary will be having a bad day. That only works if you already have:

The 10-minute restore path: flip the NS records at the registrar to the second provider, verify with dig +trace, done. Doing this for the first time during an outage takes hours and mistakes; rehearsed, it takes minutes.

3. TTLs: lower before the change, never during the fire

The classic mistake is dropping a TTL to 60 seconds after something is already broken — caches keep serving the old answer for the old TTL no matter what you do now. The rule is boring and it works:

And watch out for the hidden TTL: your CDN, mail provider, or status page may hold its own cached answers with longer TTLs than yours. During an incident, check what resolvers see, not what the zone file says.

4. The 10-minute restore path (when DNS is already down)

  1. Confirm scope (2 min): dig the failing names against two public resolvers and one ISP resolver. All resolvers failing + registrar portal slow = provider-side outage, not your config.
  2. Decide the path (1 min): provider-down → switch NS to the second provider. Your-record-mistake → restore the exported zone to the primary.
  3. Execute from the runbook (5 min): the exact NS strings, the exact export filename, the exact dig +trace verification — written down, because typing nameserver hosts from memory under pressure is how typos become second outages.
  4. Verify and tell people (2 min): test from a phone on mobile data (not office Wi-Fi with its own cached answers), then post the status update — even a two-line one. Silence makes a technical incident a trust incident.

5. The mistakes that turn minutes into hours

Takeaways

---

The Ops Starter Kit ($14) turns the first-hour chaos of any outage — DNS included — into a fillable plan, and Vol. 2 ($27) adds the DR plan and evidence log for the review after. Launch week: 30% off any paid kit with code HIVE-LAUNCH30 at checkout (ends Sep 11, 23:30 ACST).