Dennis Academy crestDENNIS ACADEMY

3.0 Security Architecture

Applying Security to Enterprise Infrastructure

Sign in to track progress

Simple explanation

This lesson is about the physical and logical building blocks used to actually construct a secure network: where devices sit, what they do, and how traffic moves securely between zones.

Technical explanation

  • Device placement and security zones — grouping systems by trust level (e.g., a DMZ for internet-facing services, separate from the internal trusted network).
  • Attack surface — every network appliance and open path is potential surface; placement should minimize unnecessary exposure.
  • Connectivity — how zones and devices actually connect to each other.
  • Failure modes: fail-open (on failure, the device allows traffic through — prioritizes availability) vs. fail-closed (on failure, the device blocks traffic — prioritizes security). The right choice depends on what matters more for that specific system.
  • Device attributes: active vs. passive (active devices sit in the traffic path and can act on it; passive devices only observe a copy of traffic), inline vs. tap/monitor (inline is directly in the data path; tap/monitor receives a mirrored copy without touching live traffic).
  • Network appliances: jump server (a hardened, tightly controlled system used as the single path into a sensitive network segment), proxy (intermediary for outbound/inbound traffic, can filter and log), IPS/IDS (Intrusion Prevention/Detection System — IPS acts inline and can block, IDS observes and alerts), load balancer (distributes traffic across multiple servers), sensors (collect traffic/security data for analysis).
  • Port security: 802.1X (port-based network access control — a device must authenticate before a switch port allows traffic), EAP (Extensible Authentication Protocol — the framework 802.1X uses to actually carry authentication).
  • Firewall types: WAF (Web Application Firewall — filters HTTP/S traffic specifically, understands application-layer attacks like SQLi/XSS), UTM (Unified Threat Management — bundles multiple security functions into one appliance), NGFW (Next-Generation Firewall — adds application awareness and deep packet inspection beyond simple port/protocol filtering), Layer 4 vs. Layer 7 — Layer 4 firewalls filter on IP/port only; Layer 7 firewalls understand the actual application protocol/content.
  • Secure communication/access: VPN (encrypted tunnel over an untrusted network), remote access, tunneling via IPSec (network-layer encryption, often for site-to-site VPNs) or TLS/SSL (used for encrypted remote access at a higher layer), SD-WAN (Software-Defined WAN — centrally managed, often more flexible than traditional WAN), SASE (Secure Access Service Edge — combines networking and security into a single cloud-delivered service).

Synonyms / related terms

| Term | Means | |---|---| | NGFW | Next-Generation Firewall | | WAF | Web Application Firewall | | SASE | Secure Access Service Edge |

Concept Check

"A hospital's automatic door-lock system loses power during a fire. Should it be configured fail-open or fail-closed?" The instinct might be fail-closed (security first), but for a life-safety scenario like fire evacuation, fail-open is correct — people must be able to exit, and availability of egress outweighs the security concern in that specific context.

Interview-style Q&A

Q: What's the practical difference between an IDS and an IPS? A: "An IDS is passive — it observes a copy of traffic and alerts on something suspicious, but the malicious packet still gets through. An IPS sits inline, in the actual traffic path, and can block the packet in real time. The trade-off is that an IPS can introduce latency or, if misconfigured, block legitimate traffic — an IDS can't disrupt traffic flow since it never touches the live path."

Memory trick

"Jump the Proxy, Load the WAF" — a nonsense sentence that anchors jump server → proxy → load balancer → WAF as the chain of appliances traffic might pass through on its way into a protected zone.