星网Xingwang · WY

How a Small Host Actually Keeps a Server Up (and What Breaks)

TL;DRAvailability on consumer access lines is an engineering problem, not a number in a table. Most failures are recovered remotely through a management line kept separate from customer traffic plus out-of-band hardware. The ones that are not are the interesting ones — and a host that publishes those tells you more than one quoting an uptime percentage.

Why an uptime percentage tells you almost nothing

A published availability figure is usually a marketing number: unaudited, self-measured, and with no stated method for what counts as downtime. Two hosts can quote the same figure and have completely different recovery capabilities.

What actually predicts availability is the answer to a narrower question: when the site loses power or connectivity and nobody is there, what specifically happens next? That answer is concrete and checkable. A percentage is not.

The failure modes, and which ones are recoverable remotely

FailureRecoverable remotely?What it requires
Operating system hangsYesOut-of-band KVM wired to the host
Host hardware wedgedYesSwitched outlet plus power-on-after-loss in firmware
Site loses power brieflyYesUPS to ride it out; firmware auto-start when it does not
Service line dropsYesA management line independent of customer traffic
Management path itself failsOnly if it has its own fallbackA second uplink that does not share the first one's failure
Carrier changes configuration on the lineOften notNothing on site can fix an uplink with no valid configuration

The last two rows are where availability is actually won or lost, and they are the two rows most providers never discuss.

What we run

  • A management line that carries no customer traffic, so the rescue path does not share a failure domain with the thing being rescued.
  • An out-of-band KVM wired directly to the host — console access and firmware-level control, not an agent that needs the OS to be alive.
  • A switched outlet on the host's power circuit, for the case where the machine needs a hard power cycle.
  • Power-on-after-loss set in firmware, so the host comes back by itself when power returns.
  • A UPS, so short interruptions never become a reboot at all.

This is a one-time cost that does not scale with customer count, which is the whole argument for it. Sending a person scales linearly and eventually consumes the margin.

Two failures this did not cover

Both are more instructive than the equipment list, so we publish them.

2026-07-26 — the rescue path depended on the thing being rescued. Our control-plane tunnel egressed from behind the router it existed to manage. The router went down, and with it the ability to reach the box that would have fixed the router. A deadlock, and entirely self-inflicted. The rule we took away: a rescue path must never share a dependency with its target. The control plane now defaults to the management line.

2026-08-07 — the failure mode we prepared for was not the one we got. A carrier technician converted our lines from DHCP to static configuration. Our equipment was still configured for DHCP and dropped off one by one as leases expired, including the management line. We had planned for 'the out-of-band router hangs, power-cycle it'. What happened was 'it is alive and healthy, but its uplink has no valid configuration', and a switched outlet is useless against that. Recovery came through the one line that had stayed on DHCP: power-cycling its modem gave the management router a valid address again, and the rest was done remotely — at the cost of a full day offline.

The fix that follows from the second one is observability, not more hardware: every line now carries its own probe in our monitoring, so 'alive but without a valid configuration' is a state we can see rather than infer. The residual gap — the uplink itself as the casualty — is real, and we would rather say so than imply it does not exist.

What to ask any provider

  1. Does out-of-band management run on a line separate from customer traffic? A shared line means the rescue path dies with the outage.
  2. What happens when the host itself stops responding — is there console and firmware access, or only an agent inside the operating system?
  3. Does the machine come back on its own after a power loss, or does someone have to press something?
  4. What was your last outage, and what actually fixed it? A provider who cannot answer specifically either has not had one or does not track them; both are worth knowing.
  5. Which failure modes are you not covered for right now? An honest answer here is worth more than any percentage.

We answer all five above. What we claim is that most failures drop to remote recovery in minutes — not that a site visit never happens, which no one operating in an ordinary building can honestly promise.

Frequently Asked Questions

What is out-of-band management?

A way to reach a server that does not depend on the server or its normal network path working — typically console and power control over a separate line. It is what turns a site visit into a remote fix.

Why does the management line need to be separate?

Because a rescue path that shares a failure domain with its target dies at the same moment. We learned this concretely in July 2026 when our control plane egressed from behind the router it was meant to manage, and the router's failure made it unreachable.

What uptime percentage do you guarantee?

We do not quote one. Availability figures are typically unaudited and self-measured, so instead we publish our incidents and describe exactly what recovers remotely and what does not. That is checkable; a percentage is not.

What can't be fixed remotely?

Anything that leaves the management path itself without a working uplink. If a carrier reconfigures the line or the uplink hardware fails, no amount of remote power cycling helps — which is why a backup uplink on a different medium matters.

Updated 2026-08-25 · Back to Guides · View plans →