Disaster Recovery
The two clocks: RPO and RTO
Picture a database server that dies at 10:00. Two questions decide how badly that hurts: how much data did we just lose, and how long until customers can use the service again? Disaster recovery (DR) is the discipline of restoring service after a major disruption, and almost every DR decision is driven by the answers to those two questions, expressed as two targets you choose in advance.
RPO: how much data can we lose
The recovery point objective (RPO) is the maximum acceptable amount of data loss, measured as a span of time. The authoritative definition from NIST SP 800-34 Rev. 1[1] is "the point in time to which data must be recovered after an outage." If your last good backup is from 09:00 and the server died at 10:00, you lost an hour of data. An RPO of one hour means that loss is acceptable; an RPO of five minutes means it is not.
The consequence is the rule worth memorizing: RPO sets backup frequency. Your backup or replication interval can never be longer than your RPO, because anything written between backups is what you stand to lose. A one-hour RPO requires backups at least hourly; a near-zero RPO requires continuous replication, not nightly tape.
RTO: how long can we be down
The recovery time objective (RTO) is the maximum acceptable downtime. NIST SP 800-34 Rev. 1 defines it as "the overall length of time an information system's components can be in the recovery phase before negatively impacting the organization's mission." It is the clock that starts the instant service drops and stops when service is restored. An RTO of four hours means the business can tolerate being down for up to four hours; beyond that, the damage is unacceptable.
The consequence here: RTO sets the recovery method. A long RTO can be met by restoring from backup tape. A short RTO cannot wait for a restore and forces faster machinery: a standby site, replicated systems, or automated failover. The shorter the RTO, the more you must pre-stage and the more it costs.
Why both, and the one trap
RPO and RTO are independent and you set them separately, because they protect different things: RPO protects against data loss, RTO protects against downtime. A bank might tolerate hours of downtime (a generous RTO) but almost no transaction loss (a near-zero RPO); a marketing site might tolerate losing a day of edits (a loose RPO) but need to be back up in minutes (a tight RTO). The exam trap is to swap them. Hold the one-line split: RPO is how much data can we lose; RTO is how long can we be down. Both are derived during a business impact analysis (BIA), the exercise that identifies critical processes and the cost of their disruption.
Measured metrics: MTTR and MTBF
Where RPO and RTO are targets you decide, the next two acronyms are statistics you measure from real equipment history. That single distinction is the cleanest way to keep all four straight: RPO and RTO are objectives you set before any failure; MTTR and MTBF are properties calculated after observing failures.
MTTR: how fast can we fix it
Mean time to repair (MTTR) is the average time it takes to restore a failed component once it breaks. Add up the repair times across many failures and divide by the number of failures. MTTR measures recoverability, so it drives operational decisions: how many spare parts to stock, how many on-call staff to keep, whether a vendor's four-hour support contract is fast enough. A lower MTTR is better, because it means each failure is resolved faster, which in turn helps you meet a tight RTO.
MTBF: how reliable is it
Mean time between failures (MTBF) is the average operating time between failures of a repairable system. A drive rated for an MTBF of 1,200,000 hours is expected, statistically across a population, to run that long on average between faults. MTBF measures reliability, so it drives design decisions: which component to buy, and when to schedule redundancy or proactive replacement before the part is likely to fail. A higher MTBF is better, because failures are rarer.
Keeping the pair straight
The one-line tell separates them by the question each answers: MTBF answers how reliable is it (time between failures); MTTR answers how fast can we fix it (time to repair). They work together. MTBF tells you how often you will be doing repairs; MTTR tells you how long each repair takes. A system with a high MTBF and a low MTTR is both reliable and quick to recover, which is exactly the combination that lets you commit to an aggressive RTO. The exam trap is to treat MTTR or MTBF as a target you simply declare in a plan. They are measured from failure data, not asserted; only RPO and RTO are objectives you choose.
Recovery sites and redundancy
When an RTO is too short to rebuild from scratch after a disaster, you pre-stage an alternate facility and decide how to run it relative to the primary. Two independent choices follow: which site type to keep ready, and which redundancy mode to run.
Site types: a cost-versus-speed ladder
The three recovery-site types are a deliberate trade of ongoing cost against recovery speed; higher cost buys a lower RTO. Learn them as one ladder, using the NIST SP 800-34 Rev. 1 definitions.
- A cold site is, per NIST[2], "a backup facility with necessary electrical and physical components but without computer equipment in place." You get space, power, and cooling, nothing more. It is the cheapest to keep on standby and the slowest to activate, because after the disaster you must ship in, install, and configure all the hardware and then load data. Recovery takes days.
- A warm site is, per NIST[3], "an environmentally conditioned work space that is partially equipped with information systems and telecommunications equipment." The gear is largely there; you load current data and finish setup before cutting over. It is the middle of the ladder on both cost and speed, with recovery measured in hours.
- A hot site is, per NIST[4], "a fully operational offsite data processing facility equipped with hardware and software." It mirrors production and is kept continuously updated, so it can take traffic almost immediately. It is the fastest recovery and the most expensive to run, with recovery in minutes.
The selection rule falls straight out of the ladder: pick the cheapest tier that still meets your RTO. A long RTO on a tight budget tolerates a cold site; a near-zero RTO with budget to match needs a hot site; a warm site splits the difference.
Redundancy modes: active-active vs active-passive
Separately from the site tier, you choose how two or more nodes (or sites) run relative to each other.
In active-active, every node carries live traffic at the same time. The design both spreads load and survives the loss of a node, because the survivors simply absorb the failed node's share. This gives the shortest recovery (often no perceptible outage at all) but demands that every node be sized to carry extra load and kept fully synchronized, which is the most expensive and complex option.
In active-passive, the primary handles all traffic while the secondary stands by idle (or warm) until a failover promotes it to active. This is simpler and cheaper because the standby does not serve users day to day, but recovery includes the failover delay and the idle capacity is unused until something breaks. A hot site fronted by automated failover is the active-passive design that gets closest to active-active's recovery time.
The two choices compose: a hot site can be run active-active (the lowest possible RTO, highest cost) or active-passive (slightly higher RTO at the cost of the failover, lower steady-state cost).
DR testing: the fidelity ladder
A DR plan you have never exercised is a guess. Stale runbooks, expired credentials, an undersized replication link, a backup that never actually restores: these go unnoticed until the real disaster, when there is no time left to discover them. So DR plans are tested on a ladder of increasing realism and increasing risk, and the rule is to start low and climb only as confidence grows.
The four test types, lowest to highest fidelity
- A tabletop exercise (also called a walkthrough) is a discussion. The recovery team sits down with the plan and a scenario and talks through who does what, surfacing gaps and ambiguities. No systems are touched, so it is the cheapest and safest test and the natural first step. Its weakness is that it only proves the plan reads correctly, not that it works.
- A simulation models the disaster and the response more concretely, exercising procedures and decision-making against a constructed scenario, without performing a real production cutover. It catches process problems a pure discussion misses while still keeping production untouched.
- A parallel test stands the recovery systems up for real and runs them alongside live production. Real data flows into the recovery environment and you confirm it produces correct results, but production stays primary the whole time, so users are never at risk. This proves the recovery site actually functions without betting the business on it.
- A full failover test (also called a full-interruption test or cutover) actually shifts production to the recovery site, exactly as a real disaster would. It is the only test that proves end-to-end recovery, including the failover mechanism and real user load, and it is the most disruptive and risky, so it is run rarely, in a maintenance window, with a tested back-out to the primary.
The pattern and the trap
The ladder trades realism for risk: each rung proves more but costs and endangers more, so you climb it as the plan earns trust. The exam reflex: a question that wants the lowest-cost, no-impact validation points to the tabletop; one that wants proof the recovery site truly works under real conditions points to the parallel test or, for the most complete proof, the full failover. The trap is assuming a documented plan equals a working capability. Until a parallel or full-failover test exercises it end to end, the plan has untested gaps no matter how polished the runbook reads.
Exam-pattern recognition
Disaster-recovery questions on N10-009 are mostly term-to-definition and scenario-to-metric items. The stem gives a number, a constraint, or a situation and asks for the matching acronym, site type, or test. Train these reflexes.
Metric reflexes
- "How much data can we afford to lose" / "how often must we back up" = RPO. A stated tolerable data loss ("no more than 15 minutes of transactions") is an RPO, and it sets backup cadence.
- "How long can the service be down" / "how fast must we be back online" = RTO. A stated tolerable outage ("restore within 4 hours") is an RTO, and it drives the recovery method and site tier.
- "Average time to fix a failed component" = MTTR (recoverability; lower is better).
- "Average operating time between failures" = MTBF (reliability; higher is better).
- Set-vs-measured cue: RPO and RTO are objectives you choose; MTTR and MTBF are statistics you measure from failure history.
Site and redundancy reflexes
- "Space, power, and cooling but no equipment; cheapest; slowest" = cold site.
- "Partially equipped; needs current data loaded; moderate" = warm site.
- "Fully operational, continuously updated, ready immediately; costliest" = hot site.
- "All nodes serve traffic at once; load-shared and survives a node loss" = active-active.
- "Standby waits idle until a failover promotes it" = active-passive.
Test reflexes
- "Discussion-based, no systems touched, find gaps cheaply" = tabletop / walkthrough.
- "Models the disaster and response without a real cutover" = simulation.
- "Recovery runs alongside live production to prove it works" = parallel test.
- "Production is actually shifted to the recovery site" = full failover / cutover (most realistic, most disruptive).
The traps
- Swapping RPO and RTO. This is the single most common DR distractor. Backups and data loss = RPO; downtime and time-to-restore = RTO.
- Treating MTTR/MTBF as targets. They are measured, not declared. An answer that "sets" an MTBF the way you set an RTO is wrong.
- Choosing a hotter site than the RTO needs. The correct site is the cheapest tier that still meets the RTO, not always the fastest one. A loose RTO with a tight budget points to a cold or warm site, not a hot site.
- Equating a documented plan with a tested one. If a stem asks what proves the plan actually works, the answer is a test that exercises it (parallel or full failover), not the existence of the runbook.
Recovery site types compared: cold, warm, hot
| Attribute | Cold site | Warm site | Hot site |
|---|---|---|---|
| Equipment in place | Space, power, cooling only; no IT gear | Partially equipped (systems + telecom) | Fully equipped and running |
| Data currency | None until restored | Recent; final load needed | Continuously updated / replicated |
| Recovery speed (RTO) | Slowest (days) | Moderate (hours) | Fastest (minutes) |
| Ongoing cost | Lowest | Moderate | Highest |
| Best fit | Long RTO, tight budget | Balance of cost and speed | Short RTO, cost is acceptable |
Decision tree
Sharp facts the exam loves — give these one last read before exam day.
Cheat sheet
Sharp facts the exam loves — scan these before test day.
- RPO is the maximum data loss you can tolerate, measured in time
The recovery point objective (RPO) is the point in time to which data must be recovered after an outage, so it expresses the maximum acceptable data loss as a span of time, not a clock duration of downtime. A one-hour RPO means losing at most the last hour of data is acceptable. It is a target you set in advance, typically during a business impact analysis, not a value measured from equipment.
Trap Reading RPO as how long the system can be down; that is RTO. RPO is about data loss, measured backward from the disaster to the last good backup.
- RPO sets backup frequency: the interval can never exceed the RPO
Because RPO is the most data you can afford to lose, your backup or replication interval must be no longer than the RPO. A one-hour RPO requires backups at least hourly; a near-zero RPO requires continuous replication rather than nightly tape. The tighter the RPO, the more often (and more expensively) you must capture data.
Trap Setting backup frequency from the downtime target (RTO); backup cadence is governed by RPO, the data-loss target.
10 questions test this
- A network administrator must ensure that no more than 30 minutes of transaction data is lost during a disaster. Which of the following…
- A company's disaster recovery plan specifies a 2-hour RPO for its financial database. The current backup strategy runs incremental backups…
- A company requires that its email system can lose no more than 30 minutes of data during a disaster. The backup administrator must…
- A server failure occurs at 3:00 PM. The last successful backup was completed at 10:00 AM. The organization's RPO for this server is 4…
- A company wants to reduce its RPO from 24 hours to 15 minutes for a mission-critical database. Which of the following changes to the backup…
- A company's disaster recovery plan specifies an RPO of 4 hours for a critical database server. Which of the following describes the impact…
- A company's disaster recovery plan specifies an RPO of 4 hours for its financial database. Which of the following backup strategies would…
- An organization has an RPO of 1 hour for its critical database server. Which of the following backup strategies would meet this requirement?
- A junior network administrator is reviewing a disaster recovery plan and asks about the purpose of RPO. Which of the following best…
- A company has established an RPO of 4 hours for its critical file server. The backup team currently performs a single full backup each…
- RTO is the maximum downtime you can tolerate before unacceptable harm
The recovery time objective (RTO) is the overall length of time a system can be in the recovery phase before it negatively impacts the organization's mission. It is the clock that starts when service drops and stops when service is restored, so a four-hour RTO means the business can be down for up to four hours. Like RPO, it is a target you choose, not a measured statistic.
Trap Confusing RTO with how much data can be lost; data loss is RPO. RTO is downtime, measured forward from the disaster to service restored.
- RTO drives the recovery method and the recovery-site tier
A long RTO can be met by restoring from backup tape, but a short RTO cannot wait for a restore and forces faster machinery: a standby site, replicated systems, or automated failover. The shorter the RTO, the more you must pre-stage and the more it costs. This is why RTO, not RPO, points you toward a cold, warm, or hot site.
7 questions test this
- An organization's disaster recovery plan specifies a maximum RTO of 15 minutes for a mission-critical application. Which of the following…
- During a disaster recovery test, restoring the primary application server from backup takes 6 hours. The application's defined RTO is 2…
- An organization requires a disaster recovery solution that restores critical services within minutes of a complete site failure. Which of…
- An organization's SLA requires that its primary application must be restored within 15 minutes after an outage. Which of the following…
- A network engineer must select a disaster recovery solution for a system that requires near-zero data loss and recovery within seconds.…
- An organization requires an RTO of less than five minutes for its mission-critical order processing system. Which of the following disaster…
- A business requires critical network systems to be restored within minutes and with near-zero data loss after a disaster. Which of the…
- RPO and RTO are independent: one governs data, the other governs downtime
RPO and RTO are set separately because they protect different things, and a system can have a tight one and a loose other. A bank may tolerate hours of downtime (loose RTO) but almost no transaction loss (near-zero RPO); a marketing site may tolerate losing a day of edits (loose RPO) but need to be back in minutes (tight RTO). Hold the one-line split: RPO is how much data can we lose, RTO is how long can we be down.
Trap Swapping RPO and RTO, the single most common DR distractor; backups and data loss are RPO, downtime and time-to-restore are RTO.
- RPO and RTO are objectives you set; MTTR and MTBF are properties you measure
The cleanest way to keep the four DR acronyms straight is by origin: RPO and RTO are objectives chosen before any failure, while MTTR and MTBF are statistics calculated after observing real failures. You declare an RTO in a plan, but you cannot declare an MTBF; you compute it from failure history.
Trap Treating MTTR or MTBF as a target you assert in a plan the way you set an RTO; only RPO and RTO are chosen objectives.
- MTTR is the average time to repair a failed component (recoverability)
Mean time to repair (MTTR) is the average time it takes to restore a failed component once it breaks, computed by dividing total repair time by the number of failures. It measures recoverability, so it drives spare-parts inventory, on-call staffing, and whether a vendor's support response is fast enough. A lower MTTR is better and directly helps you meet a tight RTO.
3 questions test this
- A network manager reviews incident reports and calculates that the average time to restore service after equipment failures is 4 hours.…
- During a quarterly review, a network administrator reports that the average time required to restore failed network devices to operation…
- A network engineer documents that a WAN router operates an average of 5,000 hours between failures and requires an average of 2 hours for…
- MTBF is the average operating time between failures (reliability)
Mean time between failures (MTBF) is the average operating time between failures of a repairable system, so a high MTBF means failures are rare. It measures reliability, which is why it drives design choices: which component to buy and when to schedule redundancy or proactive replacement before a part is likely to fail. A higher MTBF is better.
Trap Confusing MTBF (time between failures, reliability) with MTTR (time to repair, recoverability); MTBF answers how reliable, MTTR answers how fast to fix.
3 questions test this
- A network administrator reviews maintenance logs for a distribution switch. Over a 12-month period, the switch accumulated 8,000 hours of…
- After implementing proactive maintenance and upgrading power supplies on a distribution switch, a network administrator observes that the…
- A network engineer documents that a WAN router operates an average of 5,000 hours between failures and requires an average of 2 hours for…
- A cold site has space, power, and cooling but no IT equipment
A cold site is a backup facility with the necessary electrical and physical components (space, power, cooling) but no computer equipment in place. It is the cheapest tier to keep on standby and the slowest to activate, because after the disaster you must install and configure hardware and then load data, so recovery takes days. It fits a long RTO on a tight budget.
- A warm site is partially equipped and needs current data loaded
A warm site is an environmentally conditioned work space partially equipped with information systems and telecommunications gear. Most of the equipment is already there, so you load current data and finish setup before cutting over, which puts recovery in hours. It is the middle of the cost-versus-speed ladder, between a cold and a hot site.
- A hot site is fully operational and ready to take over in minutes
A hot site is a fully operational offsite facility equipped with hardware and software and kept continuously updated, so it mirrors production and can take traffic almost immediately, putting recovery in minutes. It delivers the shortest RTO and is the most expensive tier to run because it duplicates production and stays synchronized.
6 questions test this
- An organization's disaster recovery plan specifies a maximum RTO of 15 minutes for a mission-critical application. Which of the following…
- During a disaster recovery test, restoring the primary application server from backup takes 6 hours. The application's defined RTO is 2…
- An organization requires a disaster recovery solution that restores critical services within minutes of a complete site failure. Which of…
- An organization's SLA requires that its primary application must be restored within 15 minutes after an outage. Which of the following…
- A network engineer must select a disaster recovery solution for a system that requires near-zero data loss and recovery within seconds.…
- A business requires critical network systems to be restored within minutes and with near-zero data loss after a disaster. Which of the…
- Pick the cheapest recovery-site tier that still meets your RTO
The three site types are a deliberate trade of ongoing cost against recovery speed: higher cost buys a lower RTO. The selection rule is to choose the least expensive tier that still satisfies the RTO, not always the fastest one. A near-zero RTO with budget points to a hot site; a long RTO on a tight budget tolerates a cold site; a warm site splits the difference.
Trap Choosing a hot site when a loose RTO and a tight budget would be met by a cold or warm site; the correct tier is the cheapest one that meets the RTO.
- Active-active runs all nodes live, sharing load and surviving a node loss
In an active-active design every node carries live traffic at the same time, so the design both spreads load and survives the loss of a node because survivors absorb the failed node's share. This gives the shortest recovery, often with no perceptible outage, but it is the most expensive and complex because every node must be sized for extra load and kept fully synchronized.
3 questions test this
- An organization requires an RTO of less than five minutes for its mission-critical order processing system. Which of the following disaster…
- A financial services company requires near-zero data loss and near-zero downtime for its transaction processing system. Which of the…
- An organization operates two geographically separated data centers in an active-active disaster recovery configuration. Which of the…
- Active-passive keeps a standby idle until a failover promotes it
In an active-passive design the primary handles all traffic while the secondary stands by idle (or warm) until a failover promotes it to active. It is simpler and cheaper than active-active because the standby does not serve users day to day, but recovery includes the failover delay and the standby's capacity is unused until something breaks. A hot site fronted by automated failover is the active-passive design that gets closest to active-active recovery time.
Trap Assuming active-passive recovers as instantly as active-active; active-passive still incurs the failover delay before the standby takes traffic.
- A tabletop exercise validates the plan by discussion, touching no systems
A tabletop exercise (walkthrough) is a discussion in which the recovery team talks through the plan against a scenario to surface gaps and ambiguities. No systems are touched, so it is the cheapest and safest test and the natural first step, but it only proves the plan reads correctly, not that it actually works under load.
Trap Believing a passed tabletop proves the recovery site works; a discussion only validates the documented plan, not real recovery.
- A simulation models the disaster and response without a real cutover
A simulation exercises procedures and decision-making against a constructed disaster scenario more concretely than a discussion, but without performing a real production cutover. It catches process problems a tabletop misses while still keeping production untouched, so it sits above tabletop and below parallel on the fidelity ladder.
- A parallel test runs the recovery site alongside live production
A parallel test stands the recovery systems up for real and runs them alongside live production, with real data flowing into the recovery environment to confirm it produces correct results. Production stays primary the whole time, so users are never at risk, which makes the parallel test the way to prove the recovery site actually functions without betting the business on it.
- A full failover test actually shifts production to the recovery site
A full failover test (full-interruption test, or cutover) actually moves production to the recovery site exactly as a real disaster would. It is the only test that proves end-to-end recovery including the failover mechanism and real user load, and it is the most disruptive and risky, so it is run rarely, in a maintenance window, with a tested back-out to the primary.
- DR tests climb a fidelity ladder: tabletop, simulation, parallel, full failover
DR plans are exercised on a ladder of increasing realism and risk: tabletop (discuss), simulation (model), parallel (run beside production), then full failover (shift production over). Each rung proves more but disrupts and endangers more, so you start low and climb only as the plan earns trust. Pick the lowest rung that answers the question being asked.
- A documented DR plan is not a tested recovery capability
A written runbook proves nothing about whether recovery actually works; stale documentation, expired credentials, or an undersized replication link surface only when the plan is exercised. Until a parallel or full-failover test runs it end to end, assume the plan has untested gaps, which is why periodic testing is part of disaster recovery rather than an optional extra.
Trap Treating the existence of a polished runbook as proof the plan works; only an end-to-end test (parallel or full failover) demonstrates real recovery.
- Recovery metrics come out of the business impact analysis
RPO and RTO are not picked arbitrarily; they are derived during a business impact analysis (BIA), the exercise that identifies an organization's critical processes and the cost of their disruption over time. The BIA quantifies how much downtime and data loss each process can tolerate, and those tolerances become the RTO and RPO that the rest of the DR plan is built around.
- Availability equals MTBF divided by the sum of MTBF and MTTR
The standard availability percentage is MTBF / (MTBF + MTTR) x 100, where MTBF is the mean time between failures and MTTR is the mean time to repair. Availability rises when you increase MTBF (failures become rarer) and when you decrease MTTR (repairs become faster).
Trap Computing MTBF / MTTR instead of MTBF / (MTBF + MTTR); the denominator is total time, the uptime plus the repair time, not the repair time alone.
4 questions test this
- A network switch has an MTBF of 950 hours and an MTTR of 50 hours. Using the standard availability formula, which of the following is the…
- A network switch has an MTBF of 2,400 hours and an MTTR of 12 hours. Using the standard availability formula, which of the following is the…
- A firewall has an MTBF of 2,000 hours and an MTTR of 2 hours. Using the standard availability formula, which of the following is the…
- A network administrator wants to improve overall network availability using mean-time metrics. Which of the following changes to these…
- Tightening RPO and RTO drives up cost and complexity
Lowering the RPO forces more frequent backups or continuous replication, and lowering the RTO forces faster recovery mechanisms such as hot standby infrastructure. Both moves trade money and operational complexity for less data loss and shorter downtime, so aggressive objectives carry a higher price tag.
Also tested in
- AZ-104 Microsoft Azure Administrator
- SY0-701 CompTIA Security+
- CDL Cloud Digital Leader
- PCA Professional Cloud Architect
- CCSP Certified Cloud Security Professional
- CC Certified in Cybersecurity
- CISSP Certified Information Systems Security Professional
- CISSP Certified Information Systems Security Professional
- CISSP Certified Information Systems Security Professional
References
- Recovery Point Objective (RPO) — NIST Computer Security Resource Center glossary (NIST SP 800-34 Rev. 1) Whitepaper
- Cold Site — NIST Computer Security Resource Center glossary (NIST SP 800-34 Rev. 1) Whitepaper
- Warm Site — NIST Computer Security Resource Center glossary (NIST SP 800-34 Rev. 1) Whitepaper
- Hot Site — NIST Computer Security Resource Center glossary (NIST SP 800-34 Rev. 1) Whitepaper