Firewalls, IDS, IPS, Security Zones, and Screened Subnets

Key Takeaways

  • Stateful firewalls track connection state, while stateless filters evaluate packets against rules without session awareness.
  • NGFW platforms add application awareness, identity-aware policy, content inspection, and threat intelligence features.
  • IDS detects and alerts; IPS can block, reset, or drop traffic inline.
  • Proxy servers and load balancers improve control, visibility, availability, and traffic steering when placed correctly.
  • Security zones and screened subnets separate public, internal, management, and partner traffic by trust level.
Last updated: June 2026

Security Devices and Zone Design

Domain 4, Network Security, is 14% of the N10-009 exam (down from 19% on N10-008). With a maximum of 90 questions in 90 minutes and a passing score of 720 on a 100–900 scale, expect roughly 12–13 scored security items. Network+ rewards placement reasoning: a firewall rule, IDS sensor, IPS device, proxy, or load balancer is useful only when it sees the right traffic and enforces the right policy. The exam describes a business need, a traffic path, or a symptom, then asks which device or design best fits.

Firewall Types

A firewall filters traffic between zones. The exam contrasts how each type makes its decision.

Firewall typeHow it decidesCommon useLimitation
Stateless firewallEvaluates each packet against rules (source, destination, port, protocol)Router ACLs, high-speed edge filteringNo awareness of established sessions
Stateful firewallTracks sessions in a state tablePerimeter, internal segmentation, data center zonesNeeds state capacity and symmetric-routing design
Next-generation firewall (NGFW)Adds application awareness, user identity, URL filtering, malware inspection, threat intelUser Internet edge, data center, cloud perimeterMore complex policy, higher resource cost
Host-based firewallRuns on an endpoint or serverProtects a host even off-networkMust be managed consistently

A stateless ACL can drop obviously unwanted inbound traffic before it reaches a stateful firewall, but it cannot automatically permit return traffic for an established session — you must add explicit rules. Stateful firewalls are preferred between zones because they allow return traffic for sessions they already permitted without opening broad inbound access.

Proxy, IDS, IPS, and Load Balancer Roles

ControlTraffic positionPrimary function
Forward proxyBetween clients and external servicesControls and logs outbound user access
Reverse proxyIn front of internal web applicationsPublishes apps, hides internal server details
Intrusion detection system (IDS)Out of band, passive tap/SPANDetects suspicious traffic and alerts
Intrusion prevention system (IPS)InlineDetects and blocks, resets, or drops traffic
Load balancerIn front of a service poolDistributes client traffic, supports availability

An IDS is safer to deploy because it sits out of band, but it cannot directly block traffic — an alert is not prevention. An IPS is inline and can block, but poor tuning interrupts legitimate service. A load balancer is not a firewall; however, it can terminate TLS, run health checks, support session persistence, and steer traffic only to healthy nodes.

Security Zones

A security zone groups systems by trust level and policy. A typical design uses an untrusted Internet zone, a screened subnet, an internal user zone, a server zone, a management zone, and sometimes partner or guest zones.

ZoneTypical contentsPolicy idea
UntrustedInternet or external networksNever trusted by default
Screened subnetPublic web, VPN, reverse proxy, mail relay, DNSLimited inbound from Internet, limited outbound to internal
Internal userManaged laptops and desktopsPermit business services, restrict server admin
ServerApp, database, directory, file servicesPermit required flows, deny unneeded user access
ManagementAdmin workstations, jump hosts, monitoring, backupHighly restricted access to management interfaces
GuestVisitor devicesInternet only, no internal access

A screened subnet (historically a DMZ) prevents public-facing systems from sitting directly on the internal LAN. If a public web server is compromised, the attacker should still face firewall policy before reaching database, directory, management, or user systems.

Placement Examples

RequirementGood placement
Block malicious inbound before it reaches web serversIPS or NGFW inline before screened-subnet services
Alert on east-west traffic without risking outageIDS sensor on a tap or SPAN port near server traffic
Control employee web browsingForward proxy or NGFW egress policy at the edge
Publish an internal web app to the InternetReverse proxy or load balancer in the screened subnet
Restrict administration of routers and switchesManagement zone with firewall rules, named admin access

Common Traps

  • A firewall rule that allows any-to-any is not segmentation.
  • A stateless ACL may block return traffic unless explicit rules are added.
  • An IDS alert is detection, not prevention.
  • An IPS must be tuned to avoid blocking legitimate business traffic.
  • A screened subnet should have limited paths into internal systems, not unrestricted access.
  • A load balancer improves distribution and availability, but it does not replace zone policy.

Worked Scenario

A help-desk ticket reports that external users cannot reach a newly published web app, while internal users can. The web server sits in the screened subnet. The NGFW permits inbound TCP 443 from the Internet to the reverse proxy, and the reverse proxy forwards to the web server on TCP 8443. The web server, in turn, needs to reach a database in the server zone on TCP 1433. Tracing the path: the inbound rule works (internal users reach it through internal routing), so the failure is the screened-subnet-to-server-zone flow — the firewall is dropping TCP 1433.

Adding a tightly scoped permit from the web server's IP to the database IP on TCP 1433 (and nothing else) fixes the app while preserving zone isolation. This is the recurring Network+ pattern: identify which zone boundary the symptom crosses, then write the narrowest rule that satisfies the business need. Resist the tempting wrong answer of permitting the entire screened subnet to the entire server zone — that collapses the segmentation the screened subnet exists to provide.

Test Your Knowledge

A company wants to publish a public web application while limiting direct exposure of the internal application servers. Which placement best fits?

A
B
C
D
Test Your Knowledge

Which device can detect suspicious traffic but normally cannot block it because it is deployed out of band?

A
B
C
D
Test Your KnowledgeMatching

Match each control to the most accurate description.

Match each item on the left with the correct item on the right

1
Stateful firewall
2
Stateless ACL
3
Forward proxy
4
Screened subnet