CND (312-38) Network Defense Simulation
Network Scenario
You are auditing a manufacturing company's converged IT/OT (Operational Technology) network. Management is highly risk-averse regarding operational downtime; any false positive that drops legitimate SCADA or PLC traffic could cause catastrophic manufacturing line failures.
To improve visibility across the core switches, they agree to implement network traffic analysis. However, they strictly mandate that the solution must only observe and alert the SOC, without any capability to interrupt the physical flow of packets.
Traffic & Logs
Proposed Configuration and Expected Output (Suricata Engine):
Notice the architectural placement: The sensor receives a copy of the traffic via a SPAN port, meaning it cannot physically drop the packets even if an attack is detected.
Question
Expert Analysis
1. What is happening in the network:
The organization is deploying a security monitoring solution to detect malicious traffic but is constrained by strict availability requirements common in manufacturing and ICS (Industrial Control Systems) environments.
2. Identify attack or behavior:
We are identifying the correct architectural deployment for security controls. An active prevention system could introduce latency or drop legitimate production traffic (false positives), disrupting the business.
3. Why the correct answer is correct:
A NIDS (Network Intrusion Detection System) operates out-of-band. It analyzes a copy of the network traffic (usually via a SPAN port or TAP) and generates alerts when questionable traffic matches a signature or anomaly rule. Because it is not inline, it physically cannot drop traffic, perfectly fulfilling the client's requirement.
4. Why others are wrong:
- NIPS (Network Intrusion Prevention System): Sits inline in the network path and actively drops or blocks traffic it deems malicious. This violates the client's request.
- HIDS (Host Intrusion Detection System): Only monitors the individual computer/server it is installed on, not the "entire network" as requested.
- HIPS (Host Intrusion Prevention System): Is host-based and actively blocks activity, failing on both requirements.
5. Defensive action:
Deploy NIDS sensors (like Snort, Suricata, or Zeek) at strategic network chokepoints. Forward the generated alerts to a centralized SIEM for the SOC team to triage and respond to manually.
MINI LESSON: Fail-Open vs. Fail-Closed Design
When designing network defenses, understand the business impact. NIDS is a "fail-open" design; if the NIDS crashes, network traffic continues unimpeded. NIPS is typically "fail-closed" (unless specific hardware bypasses are used); if the NIPS crashes, network traffic stops. In OT/Manufacturing, availability often supersedes confidentiality, making NIDS the preferred initial deployment.
Ready for the next scenario?
Master network traffic analysis, IDS/IPS tuning, and defense-in-depth strategies.
Explore more CND simulations