Understand high availability, backup strategy, site models, testing, power protection, and continuity decisions for Security+.
Security+ treats resilience as part of security because availability failures are security failures when critical systems cannot support the business. The exam wants you to understand how redundancy, backup design, site strategy, testing, and recovery objectives fit together rather than treating continuity as a separate topic.
CompTIA is usually checking whether you can separate:
The strongest answer usually matches the recovery design to the business requirement instead of picking the most expensive continuity model automatically.
This objective group combines:
| Requirement | Strongest first concept |
|---|---|
| Fastest restoration with highest cost | Hot site |
| Balanced readiness and cost | Warm site |
| Lowest cost with longest setup time | Cold site |
| Minimal data loss | Lower RPO |
| Minimal service downtime | Lower RTO |
| Need | Strongest first concept | Why |
|---|---|---|
| Keep service running if one node fails | Fault tolerance, clustering, or load balancing | This protects live availability |
| Restore deleted or corrupted data | Backup and tested restore | Replication can copy damage as well as good data |
| Resume service at another location after major outage | Site recovery plan plus failover design | This is broader than local redundancy |
| Reduce dependence on one platform or provider | Platform diversity | It lowers systemic concentration risk |
flowchart TD
A["Critical service"] --> B["Availability design"]
B --> C["Backup or replication strategy"]
C --> D["Restore and failover testing"]
D --> E["Recovery execution"]
What to notice:
| Scenario | Strongest first fit | Why |
|---|---|---|
| Critical workload must be restored almost immediately | Hot site or very mature warm site | Readiness matters more than cost |
| Business can tolerate moderate delay but not full rebuild | Warm site | Balances readiness and spend |
| Long outage is acceptable if cost stays low | Cold site | Lowest standby cost, slowest recovery |
| Corruption or ransomware must be reversible | Offline or protected backup with restore testing | Replication alone can carry the damage forward |
| Local power instability threatens uptime | UPS for short-term continuity plus generator planning where needed | Power resilience is part of availability design |
If a question emphasizes a critical service that cannot be down for long, answers that ignore RTO or site readiness are usually weaker. If the scenario emphasizes irreplaceable or fast-changing data, the stronger answer usually protects RPO as well.
Security+ does not limit resilience to backups and site labels. You should also recognize:
These controls do not replace backups or failover. They close other availability gaps that the exam may test in plain operational language.
1service: payroll-portal
2rto: "2 hours"
3rpo: "15 minutes"
4primary_controls:
5 - load_balanced_app_tier
6 - replicated_database
7 - nightly_backup_plus_point_in_time_recovery
8site_model: warm
9power:
10 - ups
11 - generator
12test_frequency: quarterly
What to notice:
A hospital uses a patient-record system that cannot be down for long and cannot tolerate much recent data loss. The team already replicates the database to another site, but no one has tested restoration from backup in months. Which answer is strongest?
A. Replication is enough because the data already exists in two places B. Add a login banner to the system and keep the current recovery model C. Keep the replication design, but also validate backup restoration and confirm the site strategy meets the required RTO and RPO D. Replace the whole environment with a cold site to reduce cost
Best answer: C. The scenario is about recoverability, not just duplication. Security+ favors answers that protect both availability and restoration integrity.
Continue with 4. Security Operations to move from architecture choices into day-to-day defensive operations.