secplus

Dashboard / 3.0 Security Architecture

3.2 Given a scenario, apply security principles to secure enterprise infrastructure

Official exam objective outline (3 topics)
  • Infrastructure considerations
    • Device placement
    • Security zones
    • Attack surface
    • Connectivity
    • Failure modes: Fail-open, Fail-closed
    • Device attribute: Active vs. passive, Inline vs. tap/monitor
    • Network appliances: Jump server, Proxy server, IPS/IDS, Load balancer, Sensors
    • Port security: 802.1X, Extensible Authentication Protocol (EAP)
    • Firewall types: Web application firewall (WAF), Unified threat management (UTM), Next-generation firewall (NGFW), Layer 4/Layer 7
  • Secure communication/access
    • Virtual private network (VPN)
    • Remote access
    • Tunneling: Transport Layer Security (TLS), Internet protocol security (IPSec)
    • Software-defined wide area network (SD-WAN)
    • Secure access service edge (SASE)
  • Selection of effective controls

★ Starred in your notes: WAF · IPsec transport vs. tunnel mode · north–south vs. east–west · OSI mnemonic ("All People Seem To Need Data Processing") & Transport = ports · port security · DHCP snooping · loop protection.

Internet FW 1 Screened subnet (DMZ) Web / mailpublic services Reverse proxyWAF in front Jump boxadmins go through here FW 2 Internal LANdatabases, users, management Class: "out to in, but the DMZ should not be directly connected (to the inside); uses jumpbox."

Breakdown 1 — Zones, placement, and traffic direction

ConceptMeaning
Security zonesTrust levels: internet (untrusted) → screened subnet/DMZ (semi-trusted, public-facing servers) → internal LAN → restricted (databases, management)
Screened subnet (DMZ)Outside can reach in, but the DMZ should not connect directly to the inside; admins reach it through a jump box (class)
Device placementFirewalls at zone boundaries; IDS sensors where they can see traffic; WAF in front of web apps
Attack surfaceEvery exposed service/interface; minimize per zone
ConnectivityIn-band (management on the same channel as data) vs. out-of-band (plug into the device via a cable / separate management network — class)
North–south vs. east–westNorth–south = in/out of the data center from the internet; east–west = between systems inside the data center (class) — micro-segmentation protects east–west

Breakdown 2 — Failure modes and device attributes

TermMeaningChoose when
Fail-openDevice fails → traffic passesAvailability matters more (e.g., a monitoring tap)
Fail-closedDevice fails → traffic blockedSecurity matters more (firewall, data diode)
ActiveDevice can act on traffic (block)IPS, firewall
PassiveDevice only observesIDS, tap
InlineTraffic flows through it (can block, adds latency, can be a point of failure)IPS
Tap / monitor (SPAN)Copy of traffic (cannot block)IDS, NetFlow

Breakdown 3 — Network appliances (class Chapter 5–6)

ApplianceWhat it doesClass notes
Jump server / bastionHardened box you must go through to reach a secure zone"DMZ uses jumpbox"
Proxy serverIntermediary between client and server; forward = egress/outbound (filters users' web traffic), reverse = internet → your servers (hides/protects them)
IDS vs. IPSIDS detects/alerts only; IPS is inline and blocks. Host-based (HIDS/HIPS), network (NIDS/NIPS), wireless (WIDS)Detection methods: signature (known patterns), heuristic/anomaly (deviation from baseline), stateful protocol analysis (SPI) — protocol anomaly detection
Load balancerSpreads traffic across servers; active/active (all serve) vs. active/passive (some on standby)
SensorsCollect traffic/logs for the SIEM
Port security / 802.1XOnly authenticated devices/known MACs get a switch port; EAP carries the authentication (supplicant → authenticator → authentication server)
Firewall typesWAF (web application firewall — SQLi/XSS at layer 7), UTM (unified threat management — "all in one; combines a lot; could be a point of failure"), NGFW (app-aware + IPS + identity), Layer 4 (ports/IPs, stateful) vs. Layer 7 (application content)Stateless = one connection at a time, looks one way; stateful = knows both directions and connection state (class rope analogy)
Switch featuresPort security, MAC filtering, DHCP snooping, DAI, loop protection (STP), flood guard, MACsecsee 2.5

Breakdown 4 — Secure communication and access

TechnologyKey facts
VPNSite-to-site (company ↔ company/branch, always on), host-to-site (remote user → company), host-to-host (computer ↔ computer). Full tunnel = everything goes through the VPN; split tunnel = only corporate traffic goes through, internet traffic goes direct (faster, less inspection)
IPsecIKE (key exchange, UDP 500), AH (authentication header — integrity/authentication, no encryption), ESP (encapsulating security payload — encryption + integrity). Transport mode protects the payload only (host-to-host; AH and/or ESP); tunnel mode wraps the whole packet (site-to-site VPN; "ESP only — common")
TLSProtects application traffic (HTTPS, and TLS VPNs on 443 that pass firewalls easily). Encryption happens at the presentation layer of the OSI model (class)
SSHEncrypted by default; replaces Telnet; SCP/SFTP for files
Remote accessRDP over TLS/gateway, VPN, jump host — never expose RDP/SSH directly
SD-WANSoftware-defined WAN — routes branch traffic over multiple links by policy
SASESecure Access Service Edge — SD-WAN + cloud security stack (SWG, CASB, ZTNA, FWaaS) delivered from the cloud for remote/branch users
Transport mode (host ↔ host) — AH and/or ESP Original IP hdr ESP hdr TCP/UDP + data — ENCRYPTED ESP trailer/auth Tunnel mode (site ↔ site VPN) — ESP; whole packet wrapped NEW IP hdr ESP hdr Original IP hdr TCP/UDP + data ESP trailer/auth everything under the line is encrypted — the internal addresses are hidden from the internet

From class — OSI reminders: "All People Seem To Need Data Processing" (Application, Presentation, Session, Transport, Network, Data link, Physical). Presentation = encryption; Transport = ports; Network = IPsec/routing. Dense reference: ronbert.com/OSI.htm.

Breakdown 5 — Selection of effective controls (how scenarios are asked)

ScenarioAnswer
Public web server must be reachable but isolated from the LANScreened subnet + reverse proxy/WAF
Admins need to reach servers in the secure zoneJump server
Block SQL injection against a web appWAF
Small office wants firewall + AV + content filter in one boxUTM (accept single point of failure)
Must never let malicious traffic through even if the device diesFail-closed inline IPS
Detect only, zero latency impactPassive IDS on a tap
Remote workers, corporate traffic only through VPN, video calls directSplit tunnel
Site-to-site VPN encryptionIPsec ESP tunnel mode
Only company laptops may plug into wall ports802.1X with EAP-TLS
Stop lateral movement between serversMicro-segmentation / east-west firewalls

Quick self-check

  • AH vs. ESP? (AH = integrity only; ESP = encryption + integrity.)
  • Forward vs. reverse proxy? (Forward = for clients going out; reverse = in front of your servers.)
  • Fail-open or fail-closed for a firewall? (Fail-closed.)
  • Stateful vs. stateless firewall? (Stateful tracks connections both ways.)

Sources: 20260917_173411.jpg, 20260917_173418.jpg, 20260917_173423.jpg, 20260917_173435.jpg, 20260917_173447.jpg, 20260917_173501.jpg, 20260917_173519.jpg