Table of Contents

Click Here to Return To the CompTIA Security+ Course Page

Security Architecture is 18% of the CompTIA Security+ (SY0-701) exam. This module covers how you design secure infrastructure, protect data across its states, and build systems that survive failure. Architecture choices decide how resilient your environment stays under attack.

You apply the concepts from Domain 1 to real designs here. You weigh trade-offs between cloud and on-premises, segment networks, encrypt data, and plan recovery before an incident forces your hand.

Architecture Models

Each model shifts cost, control, and responsibility differently.

ModelStrengthTrade-off
On-premisesFull control of data and hardwareHigh cost, you patch everything
CloudScales fast, provider handles hardwareShared responsibility, less visibility
HybridMixes control and scaleComplex to secure and connect
EdgeLow latency near the userMany devices, wide attack surface

You also design with microservices, serverless, and Infrastructure as Code (IaC). IaC lets you version and review infrastructure the same way you review code. Embedded systems like IoT, ICS/SCADA, and RTOS often lack patching and run for years, so isolate them.

Cloud Security and Shared Responsibility

In the cloud the provider and customer split duties. The provider secures the of the cloud layer (hardware, hypervisor). You secure in the cloud (data, identities, configuration).

  • CASB (Cloud Access Security Broker) enforces policy between users and cloud apps.
  • SASE combines networking and security in one cloud service.
  • Misconfiguration, like a public storage bucket, is the leading cloud breach cause.

Compare the major platforms in AWS vs Azure vs Google Cloud Platform .

Infrastructure Security

You reduce the attack surface with placement and segmentation.

  • Security zones group systems by trust level (DMZ, internal, restricted).
  • VLANs and subnets separate traffic at Layer 2 and Layer 3.
  • Zero Trust removes implicit trust and verifies every request.
  • Network access control (NAC) checks device health before granting access.

Firewalls come in several types:

FirewallInspects
Layer 4 (stateful)Ports and connection state
NGFWApplications, users, and deep packets
WAFWeb application traffic (XSS, SQLi)
UTMMany functions in one appliance

Place an IDS to detect and an IPS to block. Secure name resolution with DNSSEC. Study vendor designs in Fortinet vs Cisco network security comparison and pfSense vs Firewalla .

Virtualization and Containerization

Virtual machines and containers share a host, so isolation matters.

  • A hypervisor runs VMs, and VM escape is the worst-case breach.
  • Containers share the host kernel, so a kernel flaw can spread.
  • Scan images, sign them, and run with least privilege.

See Docker vs VMs for the practical differences.

Protecting Data

You match the control to the data state.

StateRiskControl
At restStolen disk or backupFull-disk and database encryption
In transitNetwork sniffingTLS, IPSec, VPN
In useMemory scrapingAccess control, secure enclaves

You also obscure data:

  • Encryption makes data unreadable without a key.
  • Hashing creates a one-way fingerprint for integrity.
  • Masking hides part of a value (showing only the last four digits).
  • Tokenization swaps data for a non-sensitive token.

Resilience and Recovery

You design for failure before it happens.

  • Redundancy removes single points of failure (RAID, dual power, NIC teaming).
  • Load balancing spreads traffic across servers for uptime.
  • Replication keeps live copies of data across sites.
  • High availability (HA) keeps service running through clustering and failover.

Recovery sites trade speed for cost:

SiteRecovery speedCost
HotMinutesHighest
WarmHoursMedium
ColdDaysLowest

Test backups with the 3-2-1 rule: three copies, two media types, one offsite. A backup you never restored is not a backup you can trust.

Next Steps

Operate this architecture securely in Security Operations , and govern it through Security Program Management and Oversight . Review the basics in General Security Concepts , then return to the CompTIA Security+ Course .