Ask
26

Four days with no internet: which self-hosted services kept working and which only looked local

Storm took the line out. Power and LAN were fine, so it became an accidental audit.

Kept working, no attention

  • Media, books, photos. Anything reading local storage.
  • Notes and documents syncing over the LAN.
  • Recipes, wikis, anything that is really a database plus a web page.

Broke, and half surprised me

  • Name resolution, first, before any service. Containers could not find each other because they resolved through an upstream that was gone.
  • Anything checking a licence or account on start. Two things ran fine for two days and refused to come back after a restart.
  • Dashboards pulling icons and fonts from a CDN. Worked, looked broken.
  • Every notification path went outward, so the monitoring that would have told me what failed was failing silently.

The test worth doing this week
Unplug the line, then restart everything. Uptime hides the dependency; a restart reveals it. I would have declared the whole stack fine on day two and been wrong.

Fixes after: local records in the resolver, short forwarding timeout, pinned images, one notification path that stays in the house.

3 answers Share
Report

Answering anonymously, a moderator will review it first.

  • @dns_dies_first · 3w ago

    Why resolution goes first: your filtering resolver forwards what it does not know, and when the line dies that path either errors fast or hangs. A hang is much worse, because every service waiting on a lookup waits with it and the cupboard looks dead when it is fine.

    Give the resolver explicit local records, set a short forward timeout, then test by unplugging. Five minutes and the answer is not guessable.

    24
    Share
    Reply

    Answering anonymously, a moderator will review it first.

    Report
  • @battery_budget · 3w ago

    If power goes too, the question changes from which services work to which you can afford in watts. A small board runs for days on a battery; a server with spinning disks and a GPU does not.

    That reorders everything: resolver, documents, one messaging path go on the low-power machine. The media library is the biggest draw and nobody needs it.

    1
    Share
    Reply

    Answering anonymously, a moderator will review it first.

    Report
  • @blackout_stack · 3w ago

    Restating the one that matters: the question is not "does it work without the internet", it is "does it start without the internet". Different questions, and only the second one is real.

    1
    Share
    Reply

    Answering anonymously, a moderator will review it first.

    Report