SY0-701 · Security Operations · Updated July 25, 2026
Network Sensors and Monitoring Architecture
In network security monitoring, a sensor is the component that actually watches the traffic. It sits at a chosen point in the network, captures or receives packets, inspects them against detection logic, and forwards events to a central management console for analysis. Everything else in a monitoring architecture — collectors, correlation engines, dashboards — depends on sensors seeing the right traffic at the right places.
The sensor’s role in the architecture
A monitoring deployment separates into distinct layers, and the exam expects you to know which job belongs to which layer:
- Sensors are the eyes. Each one is a hardware appliance, virtual appliance, or software service positioned at a monitoring point. It performs packet capture and inspection locally and generates events, alerts, and metadata.
- The management/collection tier is the brain. Sensors ship their output to a central console or a security information and event management (SIEM) platform, where events from many sensors are aggregated, correlated, and stored.
- Analysts work from the central tier, not from individual sensors. One console can manage rule policy across dozens of sensors and push signature updates down to all of them.
This division exists because no single vantage point sees everything. A distributed fleet of sensors reporting to one console gives coverage across the perimeter, the data center, and internal segments simultaneously, while keeping policy and analysis unified.
How sensors get their traffic
A sensor is only as good as its traffic feed. There are three standard ways to deliver packets to it:
- SPAN/mirror port. A switch is configured to copy traffic from selected ports or VLANs to the port where the sensor listens. Cheap and flexible, but mirrored copies can be dropped when the switch is busy. Details in SPAN ports and network taps.
- Network tap. A dedicated passive device spliced into a link that sends a complete copy of every frame to the sensor. More reliable than mirroring, at the cost of hardware per monitored link.
- Inline placement. The sensor is deployed inline in the traffic path, so packets must physically pass through it. This is the only feed type that allows the sensor to block traffic rather than merely observe it.
Monitor mode vs inline mode
The feed method determines what the sensor can do, which is the operational difference between an intrusion detection system (IDS) and an intrusion prevention system (IPS):
| Passive sensor (monitor mode) | Inline sensor (prevention mode) | |
|---|---|---|
| Traffic source | Copy via SPAN port or tap | Live traffic flows through the device |
| Can block attacks? | No — detect and alert only | Yes — drop packets, reset sessions |
| Latency added | None | Small processing delay on every packet |
| Failure impact | Monitoring gap; traffic unaffected | Can interrupt traffic unless it fails open |
| Typical role | IDS, forensics, traffic analysis | IPS, inline filtering |
A useful mental model: passive sensors are witnesses, inline sensors are gatekeepers. The same detection engine often powers both — the deployment position is what changes the capability. For the broader comparison, see IDS vs IPS.
Where to place sensors
Placement decisions determine what threats you can observe:
- Outside the perimeter firewall — sees the raw internet, including everything the firewall would have stopped. Noisy, but useful for understanding attack pressure.
- Just inside the perimeter — sees only what got through, which makes every alert more meaningful. This is the most common first sensor location.
- In front of critical segments — a sensor at the entrance to a data center, a payment zone, or a screened subnet (DMZ) watches the traffic that matters most.
- On internal east–west links — catches lateral movement between internal hosts, which perimeter sensors never see.
Mature environments layer several of these rather than betting everything on one chokepoint.
Reading sensor logs: what generated this?
Investigations often start from a log export, and the log contents reveal what kind of device produced them. The tell is whether the entries record actions or only observations:
- Entries showing signature matches, timestamps, source/destination — with no action beyond “alert” — point to a passive IDS sensor.
- Entries showing signature matches paired with automatic countermeasures — “dropped,” “blocked,” “connection reset” — point to an IPS, because only an inline prevention device has the ability to act on traffic by itself.
- Entries showing permitted/denied decisions based on addresses, ports, and rules (with no attack signatures at all) point to a firewall, not an intrusion sensor.
This distinction is worth internalizing: blocking recorded in the log itself, performed by the same device that detected the attack, is the fingerprint of an IPS.
How the SY0-701 exam tests this
- A straight definition question about the role of a sensor in monitoring architecture — the answer is the distributed component that captures and inspects traffic at a specific network point and reports events to central management, not the console, not the SIEM, not the analyst.
- A log-analysis scenario where entries contain both detected attack signatures and automatic blocking actions, asking what device produced them — the detection-plus-enforcement combination identifies an IPS.
- A placement scenario asking where to put a sensor to detect lateral movement — the answer is on internal segments, because perimeter devices cannot see host-to-host traffic inside the network.
- A design question contrasting a sensor fed by a tap with one deployed inline, asking which can stop an attack in progress — only the inline device.
Monitoring-architecture questions like these sit in the Security Operations domain — the full SY0-701 study guide maps where this topic falls in a complete study plan, and practice questions turn the placement logic into reflex.
Quick reference
- A sensor is the traffic-facing component of a monitoring system: it captures, inspects, and reports from a specific network location.
- Sensors report to a central management console or SIEM; policy and analysis are centralized, capture is distributed.
- Feed options: SPAN/mirror port (switch copies traffic), network tap (passive hardware copy), or inline (traffic passes through).
- Passive sensors can only detect and alert; inline sensors can also block — that is the IDS/IPS dividing line.
- Logs mixing signature detections with automatic block/drop actions were generated by an IPS.
- Perimeter sensors miss east–west traffic; internal sensors are required to catch lateral movement.
- Sensor placement inside the firewall yields higher-signal alerts than placement outside it.