Disaster recovery, redundancy and continuity

Objective 3.3 · Network Operations · 19% of the exam

Why this matters

This is the domain 3 capstone, and it is the objective where precise vocabulary earns marks directly. RPO and RTO sound similar, are constantly confused, and mean entirely different things — one is about data, the other about time. MTTR and MTBF are the same trap.

The concepts also decide how money gets spent. The difference between a warm site and a hot site is a very large number, and the right answer depends on metrics the business sets, not on what engineers would prefer.

The lesson

High-availability approaches

High availability means designing so that a single failure does not become an outage. The two arrangements:

Active-passive. One system handles all the work while a standby waits, monitoring it and ready to take over. On failure, the standby becomes active — a failover.

  • Simpler, because only one system is serving and there is no question of coordination.
  • The standby is idle, so you pay for capacity that produces nothing.
  • There is a failover interval, short but non-zero, during which service is interrupted.

The FHRP protocols from the routing lesson — HSRP and VRRP — are active-passive.

Active-active. Both systems handle traffic simultaneously, with load shared between them.

  • No capacity is wasted, and aggregate throughput is higher.
  • Failover is faster, because the survivor is already working.
  • More complex: state has to be shared or the design has to tolerate its loss, and both sides must be able to carry the full load alone — otherwise losing one leaves you overloaded rather than degraded, which is a worse outcome than a clean failover.

GLBP is the active-active FHRP, and most load-balanced server pools are active-active.

The metrics, and the distinction that matters

RPO (Recovery Point Objective) — how much data you can afford to lose, expressed as time. An RPO of one hour means losing up to one hour of work is acceptable, which in turn means backing up or replicating at least hourly.

RTO (Recovery Time Objective) — how long you can afford to be down before service is restored. An RTO of four hours means service must be back within four hours of the failure.

The reliable way to hold them apart: RPO looks backwards from the failure at the data; RTO looks forwards from the failure at the clock. Both are set by the business based on what the outage costs, not by IT based on what is convenient — and both drive spending, because tightening either is expensive.

MTTR (Mean Time To Repair) — the average time taken to restore service after a failure. It measures your response: detection, diagnosis, parts, and the fix. You improve it with monitoring, spares, documentation and practice.

MTBF (Mean Time Between Failures) — the average operating time between failures of a repairable system. It measures the equipment's reliability and is usually a vendor figure.

The pairing to remember: MTBF is how often it breaks, MTTR is how long it takes to fix. Availability rises by increasing the first or decreasing the second, and the second is usually the one you can actually influence.

DR sites

If a site is lost entirely, recovery happens somewhere else. Three options, differing in how much is ready in advance — and the choice is a direct trade between cost and RTO.

Cold site. A facility with space, power and connectivity, and no equipment installed. Cheapest by a wide margin. Recovery means procuring or shipping hardware, building it, restoring data and testing — days to weeks. Appropriate where a long outage is survivable.

Warm site. Hardware is installed and configured, and data is periodically replicated — so it is current to the last sync rather than to the moment. It must be brought up to date and brought online: hours to a day. The common middle choice.

Hot site. A full duplicate, running, with data replicated continuously. It can take over in minutes or less, and with active-active operation the takeover may be seamless. The most expensive by far, because you are running a second data centre.

Also worth naming: a cloud DR site, where the recovery environment is defined as code and instantiated on demand, which can give warm-site recovery at close to cold-site cost — and is increasingly the default answer.

Map them to the metrics and the exam question answers itself. A stated RTO of fifteen minutes cannot be met by a warm site. An RTO of a week does not justify a hot one.

Testing

A DR plan that has never been tested is a document, not a capability. Untested plans fail on the mundane: backups that were not running, documentation naming people who left, a dependency nobody mapped, credentials only one person had.

Tabletop exercises are discussion-based. The team walks through a scenario verbally — "the primary data centre is unreachable, what happens now?" — checking the plan's logic, roles and decision points.

  • Cheap, quick, no disruption, and can involve senior people who would never be available for a live test.
  • Finds gaps in the plan, and cannot prove the technology works. Everything is assumed to behave as documented.

Validation tests actually exercise the recovery: restore a backup and verify the data, fail over to the secondary and confirm service, run the failback.

  • Proves the capability rather than the intention, and produces real timings to compare against the RTO.
  • Costs time, risks disruption, and needs a maintenance window.

They are complementary, and a mature programme runs tabletops often and validation tests periodically. The point the exam wants is that only a validation test tells you whether recovery works — and that the results should feed back into the plan, because a test that finds nothing usually means the test was too gentle.

Practise what you just read

1. A business states that losing up to one hour of transactions would be acceptable in a disaster. Which metric has it just defined?

Select one

  1. The recovery point objective, covering data loss
  2. The recovery time objective, covering restoration
  3. The mean time to repair for the affected service
  4. The mean time between failures for the platform
Show answer

A. RPO looks backwards from the failure at data: how much work can be lost, which dictates how often you back up or replicate. RTO looks forwards at the clock: how long until service returns. Both are set by the business from what an outage costs.

2. An organisation has an RTO of fifteen minutes for a critical service. Which disaster recovery site can meet that?

Select one

  1. A cold site, with space, power and connectivity only
  2. A warm site, with hardware installed and periodic replication
  3. A hot site, running with data replicated continuously
  4. Any of them, provided backups are taken frequently enough
Show answer

C. A cold site needs hardware procured and built, taking days to weeks. A warm site has equipment installed but data current only to the last sync, taking hours to a day. Only a hot site, already running with continuous replication, can take over within minutes.

3. What is the essential difference between a tabletop exercise and a validation test?

Select one

  1. A tabletop involves external auditors and a validation test does not
  2. A tabletop discusses the plan; a validation test proves the capability
  3. A tabletop tests backups while a validation test tests failover
  4. A tabletop is run annually and a validation test is run monthly
Show answer

B. A tabletop walks through a scenario verbally, which finds gaps in the plan's logic, roles and decision points cheaply but assumes the technology behaves as documented. Only a validation test, actually restoring and failing over, tells you whether recovery works and produces real timings.

7 more questions on this objective are part of the full course.

Practise the full question bank in the exam simulator

Hands-on labs

All hands-on labs