Skip to content
All articles
August 20, 2026 12 min read

Secure Network Architecture: Zones, Device Placement, Firewalls vs. IDS/IPS, and Secure Protocols

Chris Rees

Chris Rees

25+ years in IT · Pluralsight author, 4.6/5 across 2,000+ ratings

Secure Network Architecture: Zones, Device Placement, Firewalls vs. IDS/IPS, and Secure Protocols
www.skillthropic.com

You can buy the best inspection engine on the market, plug it into the wrong place, and learn nothing. Security+ Domain 3 is unusually practical about this: objective 3.2 is essentially a list of placement decisions, and the exam turns them into scenarios where every answer names a real product and only one sits where it could possibly see the traffic. Here is the architecture that makes those questions easy: zones, placement, firewalls, detection, and the protocol swaps you should recognize instantly.

Zones: the map every design starts from

A security zone is a group of systems that share a trust level and are separated from other zones by an enforcement point. That last clause is the whole idea. Zones are not VLANs, labels, or diagrams; a zone exists only where something inspects and decides at its boundary.

The classic three-tier layout still frames the exam's scenarios:

Network zones: the internet connects through an edge firewall to a screened subnet hosting public services, then through an internal firewall to the internal trusted zone and a restricted zone Internet untrusted Edge firewall Screened subnet (DMZ) public web + reverse proxy mail relay, VPN concentrator Internal firewall Internal (trusted) user VLANs, endpoints, printers application and database tiers east-west segmentation still required Restricted (OT, PCI, mgmt) reached only via a jump server no direct internet, no shared accounts smallest zone, strictest rules Every arrow is a policy enforcement point. A zone with no enforcement at its boundary is not a zone. It is a label.
The screened subnet exists so that a compromised public service is still one enforcement point away from everything you care about.

The screened subnet, the term that replaced "DMZ", exists for one reason: internet-facing services get compromised, and when they do, the attacker should land somewhere that cannot reach the domain controllers. If your web server sits on the same flat network as finance, you do not have a screened subnet, you have a web server.

Two related ideas the exam pairs with zones: east-west traffic (server to server, inside a zone) needs its own segmentation, because perimeter enforcement never sees it; and management interfaces belong in their own restricted zone reached through a jump server, never exposed alongside the services they administer.

Device placement: inline vs. tap, active vs. passive

Two independent choices define what any security device can do. Confusing them is the most common way to lose an objective 3.2 question.

Choice Options What it decides
Path inline (traffic flows through it) vs. tap/monitor (it gets a copy) whether it can stop anything
Behavior active (takes action) vs. passive (observes and reports) whether it acts on its own

A device on a SPAN port or network TAP can never block, no matter how good its detection is: the packet has already been delivered by the time the copy arrives. A device inline can block, and inherits a new problem: it is now a single point of failure for the traffic it inspects.

Which brings up the pair of terms the exam loves:

  • Fail-open: if the device dies, traffic keeps flowing. Availability preserved, security lost.
  • Fail-closed (fail-secure): if the device dies, traffic stops. Security preserved, availability lost.

There is no universally right answer, and that is exactly why it is a good exam question. A firewall protecting cardholder data fails closed. An inline sensor on a hospital's clinical network usually fails open, because a network outage in that context is itself a safety event. Read the scenario for what the organization cannot afford to lose.

Firewalls: four generations, one job

Every firewall answers "should this traffic pass?". They differ in how much they understand before answering.

Type Decides on Blind to
Packet filter (stateless) source/destination IP, port, protocol whether the packet belongs to a real session
Stateful the above, plus connection state what is inside the connection
NGFW application and user identity, layer 7 content encrypted payloads it is not decrypting
WAF HTTP request contents for one application everything that is not web traffic

Two placement notes that turn into exam points. A WAF protects an application, so it sits in front of that application (usually as a reverse proxy in the screened subnet) while a forward proxy sits in front of your users and controls where they can go. And a UTM appliance bundles firewall, filtering, and inspection into one box, which is convenient for a small site and a concentrated failure domain for a large one.

IDS vs. IPS, and why detection tuning is a security decision

Same engine, different placement, opposite failure modes.

An IPS placed inline in the traffic path can block packets, while an IDS receiving a copy from a SPAN port or TAP can only alert after delivery IPS inline traffic inspect + block in the data path assets Stops the packet before it lands. Also stops good traffic when a signature false-positives. IDS out of band traffic SPAN port / TAP copies the traffic assets alert only Sees everything, breaks nothing. The packet already arrived: detection, not prevention.
The difference between an IDS and an IPS is not the detection engine. It is whether the traffic has to pass through it.

How they detect matters as much as where they sit. Signature-based detection matches known patterns: precise, cheap, and blind to anything new. Anomaly-based (behavioral) detection flags deviation from a learned baseline: capable of catching novel attacks, and prone to alarming about the quarterly batch job.

That difference drives a real design decision. False positives on an IDS cost analyst time. False positives on an inline IPS cost availability. You have just blocked legitimate traffic. This is why organizations commonly run new signatures in alert-only mode first and promote them to blocking after they have proven themselves against real traffic.

Secure protocols and port selection

Objective 4.5 is largely a vocabulary test, and it is free marks if you know the swaps on sight. Every row below is the same story: a protocol designed in an era of trusted networks, and its authenticated, encrypted replacement.

Insecure Secure replacement Port
Telnet (23) SSH 22
FTP (20/21) SFTP (over SSH) / FTPS (over TLS) 22 / 989-990
HTTP (80) HTTPS 443
SMTP (25) SMTP with STARTTLS / implicit TLS 587 / 465
LDAP (389) LDAPS 636
SNMPv1/v2c (161) SNMPv3 161
DNS (53) DNSSEC (integrity), DoT / DoH (privacy) 53 / 853 / 443
POP3 (110), IMAP (143) POP3S, IMAPS 995, 993

Two nuances worth carrying into the exam. DNSSEC signs records, it does not encrypt them. It provides authenticity and integrity, while DoT and DoH provide confidentiality; they solve different problems and the exam tests the distinction. And SNMPv3 is the only version that offers authentication and encryption; v2c "security" is a community string sent in the clear, which is to say a password shouted across the room.

The failure modes the exam actually tests

Most scenario questions are built from a short list of recognizable architecture mistakes:

  • The flat network. One broadcast domain, no internal enforcement, so any compromised laptop can reach any server. Segmentation is the answer, and it is the answer to a startling number of questions.
  • The permissive rule at the bottom. A firewall policy ending in allow any any is a firewall in name only. Deny by default, permit by exception, and review rules on a schedule: old rules for decommissioned systems are how paths reopen.
  • The sensor nobody reads. An IDS generating 40,000 alerts a day into an empty queue provides documentation of your breach, not defense against it. Tuning is a control, not housekeeping.
  • The exposed management plane. RDP or SSH on a management interface reachable from the internet remains one of the most reliable initial-access paths in the wild. Management belongs behind a jump server or VPN, always.
  • The encrypted blind spot. Once traffic is TLS, your inspection devices see metadata and nothing else. Decryption at a controlled point buys visibility and costs privacy and performance: decide deliberately, document the exceptions, and never decrypt categories like health or banking traffic by accident.

Each of these is a placement or policy failure rather than a product failure, which is the underlying lesson of objective 3.2: architecture decides what your controls are even capable of.

Key takeaways

  • A zone is only a zone if something enforces policy at its boundary. The screened subnet keeps a compromised public service one enforcement point away from everything valuable.
  • Inline vs. tap decides whether a device can block; active vs. passive decides whether it acts. A SPAN-fed sensor can never prevent anything.
  • Fail-open preserves availability, fail-closed preserves security. The right choice comes from the scenario, not from a rule.
  • Firewalls differ by how deep they see: stateless, stateful, NGFW at layer 7, WAF for one application. Reverse proxy protects servers, forward proxy controls users.
  • Know the secure-protocol swaps and ports cold: SSH 22, HTTPS 443, LDAPS 636, SNMPv3, IMAPS 993. DNSSEC signs; DoT/DoH encrypt.

Network architecture is the backbone of Security+ Domain 3, which also covers architecture models, data protection, and resilience. It pairs directly with Zero Trust, which replaces the perimeter assumption these designs were built on, with the certificates that make the secure protocols above trustworthy, and with the incident response process that runs when a zone boundary is crossed. Work all 26 topics with our Security+ Domain 3 study guide.

#SecurityPlus #SY0701 #NetworkSecurity #Firewalls #IDS #IPS #Segmentation #SecureProtocols #ZeroTrust #CompTIA #CyberSecurity

Share this article

Keep reading

Enjoyed this? Get the AI security news that matters.

Join The AI Security Brief for the top AI security news, plus what's important to the C-suite. Free, straight to your inbox.

No spam. Unsubscribe anytime.

Security+ Domain 3 · security architecture

Master Security Architecture

Data protection is one module of four in Security+ Domain 3. Study all 26 topics (architecture models, enterprise infrastructure, data protection, and resilience) with our objective-mapped guide.

Get the Domain 3 guide