SY0-701 · Security Architecture · Updated July 25, 2026
Inline vs Passive Security Devices: Deployment, Fail-Open, and Fail-Closed
A network security device is deployed “inline” when live traffic physically passes through it on the way to its destination — the device is a hop in the forwarding path, so it can inspect, modify, delay, or drop packets before they arrive. A passive device, by contrast, receives only a copy of the traffic and can observe but never intervene. That single architectural choice determines everything else: whether the device can block attacks, whether it adds latency, and whether its failure can take the network down with it.
What “inline” really means
Picture the path a packet takes from the internet edge router to an internal server. An inline device — an intrusion prevention system (IPS), a firewall, a web application firewall, an inline decryption appliance — is cabled directly into that path. There is no way for a packet to reach the destination without traversing the device first. This is sometimes called a “bump in the wire.”
Being in the path grants enforcement power. The device can drop a malicious packet, rewrite a header, throttle a flow, or reset a session, and the endpoint simply never receives what was blocked. Prevention is impossible without this placement: a device that only sees copies of traffic learns about an attack after the original packets have already been delivered.
Being in the path also imposes costs:
- Latency. Every packet waits while the device inspects it. Well-engineered appliances add microseconds to low milliseconds, but the delay is never zero, and it grows under load or with heavyweight inspection such as TLS decryption.
- Throughput ceiling. The device must keep up with line rate. If it can’t, it becomes the bottleneck for the entire link.
- Single point of failure. If the device hangs, loses power, or is misconfigured, the consequences hit every user whose traffic crosses that link — not just the security team.
A passive device flips all of these properties. Fed from a switch’s port-mirroring (SPAN) session or a network test access point (TAP), it analyzes duplicated traffic out-of-band. It adds zero latency, cannot cause an outage, and can be rebooted freely — but its only possible responses are alerts and after-the-fact actions. The mechanics of getting that copied traffic are covered in SPAN ports and network taps, and where those passive network sensors should sit — perimeter, data center, internal segments — is a placement decision of its own.
Inline vs passive at a glance
| Attribute | Inline deployment | Passive deployment |
|---|---|---|
| Traffic path | Live traffic flows through the device | Device receives a copy; originals are untouched |
| Can block/modify traffic | Yes — before delivery | No — detection and alerting only |
| Latency impact | Adds processing delay to every packet | None |
| Failure impact | Can interrupt traffic flow (unless it fails open) | Loss of visibility only; traffic unaffected |
| Typical devices | IPS, firewall, WAF, inline SSL inspector | IDS, protocol analyzer, NetFlow sensor |
| Best fit | Enforcement at chokepoints | Visibility where availability is paramount |
Fail-open vs fail-closed
Because an inline device can take a whole link down, its failure behavior is a first-class design decision:
- Fail-open means that when the device dies, traffic bypasses inspection and keeps flowing. Availability is preserved; security enforcement is temporarily lost. Hardware bypass modules — relays that physically bridge the two network interfaces on power loss — implement this.
- Fail-closed (fail-secure) means that when the device dies, traffic stops. Security is preserved — nothing uninspected gets through — at the cost of an outage.
Neither is universally correct. A defense contractor protecting classified segments may mandate fail-closed: no inspection, no traffic. An e-commerce site or a hospital may mandate fail-open, judging downtime the greater harm. The exam wants you to match the failure mode to the organization’s priority between confidentiality and availability.
When availability argues against inline
Consider an environment where seconds matter — a hospital whose clinicians depend on a remote patient-monitoring application, an emergency dispatch center, an industrial control network. Placing an IPS inline at the internet edge means two new risks land on that critical path: added latency on every packet, and the possibility that a device fault interrupts connectivity entirely. When the protected application is life-critical or safety-critical, the strongest argument against inline deployment is precisely this availability exposure — the inline device becomes a single point of failure whose malfunction (or even normal processing delay) can deny access to the critical service.
The usual compromises: deploy passively via a tap and accept detection-only coverage; deploy inline but with hardware bypass configured to fail open; or deploy redundant inline appliances in a high-availability pair so one unit’s failure doesn’t sever the path. Each option trades some enforcement or cost for availability, and scenario questions hinge on which trade the organization has signaled it prefers.
How the SY0-701 exam tests this
- The definition check. A stem asks what it means for a device to be deployed inline. The credited answer: traffic physically passes through the device, allowing it to inspect and block in real time. Distractors describe mirrored copies, agent-based monitoring, or log collection — all passive patterns.
- The availability-sensitive environment. A scenario features an organization (hospital, utility, trading floor) worried about delay or outage from a security appliance, then asks what most strongly argues against inline placement. The answer is the single-point-of-failure / added-latency risk to a critical application — not cost, not management overhead.
- The failure-mode match. A stem states an organization’s priority (uptime above all, or no uninspected traffic ever) and asks how the inline device should be configured to fail. Map uptime → fail-open with hardware bypass; strict security → fail-closed.
- Pick-the-deployment. Given a goal of “block attacks before they reach the server” versus “monitor without any impact on production traffic,” choose inline for the former and passive (tap/SPAN-fed) for the latter. See IDS vs IPS for the device-level version of this same discrimination.
Deployment-mode questions like these recur across the Security Architecture domain — the full SY0-701 study guide shows where this topic fits in a complete study plan, and drilling practice questions makes the fail-open/fail-closed call reflexive.
Quick reference
- Inline = the device is in the live forwarding path; every packet traverses it before delivery.
- Only inline devices can prevent — dropping, resetting, or rewriting traffic before it reaches the target.
- Passive devices work from copied traffic: zero latency, zero outage risk, zero blocking ability.
- Inline costs: added latency, a throughput ceiling, and a new single point of failure on the link.
- Fail-open preserves availability when the device dies; fail-closed preserves security by halting traffic.
- Hardware bypass modules and HA pairs are the standard mitigations for inline failure risk.
- In life-critical or safety-critical environments, availability risk is the decisive argument against inline placement.