← Course Home Moraine Valley Community College · NCyTE  |  Instructor: Dr. John L. Sands

OT-101 · Day 5 · Lesson 11 · 4 contact hours

Monitoring, Detection & OT Incident Response

How you see what's happening on a network you can't safely poke, how you tell time consistently enough to reconstruct what happened, and why "just isolate the affected host" is IT advice that can hurt someone on a plant floor.

Level: Intermediate Strand: Operations Duration: 4 hours 6 learning objectives

Lesson Overview

Orientation, anchoring analogy, and what you should be able to do by the end.

15 min

Ask an IT security operations center how it watches a network, and the toolkit is familiar: agents on every endpoint, periodic vulnerability scans that actively probe every host, and a SIEM that assumes every log source keeps reasonably accurate time. Ask an OT team the same question, and each of those defaults breaks in a specific, predictable way. This lesson is an SME-level walkthrough of why monitoring and incident response look different in an industrial control system (ICS), and what a defensible OT security operations program does instead — not because OT teams are behind, but because the equipment and the consequences are genuinely different.

Four constraints drive everything in this lesson:

  • You often can't safely ask a device a question. An active vulnerability scan sends unexpected packets to find out what's listening. Many legacy PLCs and RTUs were never tested against malformed or out-of-sequence packets, and some will hang, reboot, or drop into a fault state when they receive one — during a live process.
  • Most field devices don't know how to tell you what they're doing. A PLC's engineering port frequently has no logging capability at all. The absence of a log entry is not the absence of an event — it's a coverage gap, and pretending otherwise creates a false sense of visibility.
  • Correlating events across sources requires everyone to agree on the time. A SIEM's entire value proposition — "this login happened, then two minutes later this setpoint changed" — collapses if the two systems' clocks disagree by more than a few seconds, and isolated OT networks are exactly where clock drift goes unnoticed.
  • The standard incident-response move, isolate the host, can itself be the hazard. Pulling the network cable on a compromised Windows laptop is a Tuesday. Pulling the network cable on a PLC actively controlling a live batch, or a safety system with no local fallback, can leave a physical process in an undefined and dangerous state.
Anchoring analogy — the security guard who can only watch, not stop and search

Imagine a security guard assigned to a busy factory floor who is told: you may watch everything happening on this floor, but you may not stop and search any worker, because interrupting them mid-task could cause an accident. That guard's whole method changes. They can't walk up and demand ID (an active scan) — they watch from a fixed vantage point and learn what normal traffic through the floor looks like (passive monitoring). Some workers don't carry a badge that logs anywhere (a syslog gap on legacy equipment), so the guard has to infer activity from what they can observe directly. The guard's notebook and the loading dock's time clock had better show the same time, or nobody will ever agree on the order of events after something goes wrong (time synchronization). And if the guard spots someone suspicious standing next to a running press, "escort them out immediately" might mean grabbing someone mid-motion next to dangerous machinery — the safe move might be to keep watching closely and call the shift supervisor instead of grabbing the person (the containment dilemma this lesson keeps returning to).

Every technique below is this guard's playbook, translated to packets, logs, and alerts on a plant network.

Learning objectives

By the end of this 4-hour session, you will be able to:

  1. Explain why passive monitoring is preferred over active scanning on an OT network, citing the specific risk active scanning poses to legacy field devices.
  2. Identify syslog coverage gaps common to Level 0/1 field devices and describe at least two compensating telemetry sources that can substitute for a missing device log.
  3. Explain the role of time synchronization in event correlation and describe the consequence of clock drift during incident reconstruction.
  4. Triage, in simulation, a queue of security alerts by weighing asset criticality, safety impact, and confidence rather than alert volume alone.
  5. Evaluate a containment decision in which isolating the affected host risks a safety or production consequence, and select a defensible compensating action.
  6. Design an OT-aware incident response playbook section that names who decides on containment and what happens when full isolation isn't an option the plant can accept.
Safeguards & Responsible Use

Every activity in this lesson is simulation-only, run against fictional organizations and fictional data. Nothing here touches live or production equipment, energized panels, or a real network. This lesson teaches detection and defensive response — it does not teach or demonstrate offensive tooling, and no step-by-step exploitation procedure appears anywhere below. Real incidents are discussed only as case-study-style narrative, never as a how-to.

Part A

Lecture — Seeing, Logging, and Timing an OT Network

Roughly 2 hours covering passive monitoring, syslog gaps, time synchronization, alert triage, the incident lifecycle, and a side-by-side comparison with IT practice.

1. Passive Asset Discovery & Monitoring

Watching the wire instead of asking the device — because some devices can't safely answer.

25 min

Active scanning discovers and characterizes network hosts by sending them unexpected traffic — port probes, crafted packets, sometimes exploit-style test payloads — and interpreting the response. It's the IT default because most modern operating systems are built and tested to survive exactly that kind of traffic without incident. Passive monitoring discovers and characterizes the same network by observing traffic that's already flowing, without ever originating a packet toward the devices being watched. It's slower to build a complete picture and it can miss a device that never talks, but it cannot itself cause the outage it's trying to detect.

The reason OT defaults to passive monitoring isn't caution for its own sake — it's a documented failure mode. Many Level 0/1 field devices (PLCs, RTUs, protective relays) run embedded firmware with a minimal or nonexistent network stack, built decades ago against an assumption that only trusted engineering traffic would ever reach the port. An unexpected packet — even a benign, well-formed one the device just wasn't built to expect — can cause the device to hang, drop its current control logic, or in rarer cases reboot. On a device that's actively holding a valve position or running a safety interlock, that reboot is not an inconvenience; it's a process event.

Analogy — the doctor who observes vitals instead of running every test

A hospital doesn't run every diagnostic test on every patient just to build a baseline — some tests carry their own risk (radiation, sedation, invasive sampling) that isn't justified without a specific reason. Instead, continuous vital-sign monitors passively observe heart rate, oxygen, and blood pressure around the clock, with zero risk to the patient, and a real test is only ordered when the passive data suggests one is needed. Passive network monitoring works the same way: it's the always-on vital-sign monitor, not a substitute for every possible diagnostic, but the right default when the diagnostic itself carries risk.

Worked example — deploying a passive sensor at Cascade Summit Electric, Substation 12

Cascade Summit Electric (fictional) wants visibility into which devices are communicating on Substation 12's control LAN without touching any of the relays or RTUs directly. The design:

  • A network tap or a switch's SPAN/mirror port is configured to copy all traffic on the control-LAN switch to a dedicated monitoring port — the copy is one-way; nothing sent to that port can reach back onto the live network.
  • A passive monitoring sensor plugged into that mirrored port parses the copied traffic — Modbus TCP function codes, DNP3 object groups, ARP and DHCP chatter — to build an asset inventory and a baseline of "who normally talks to whom."
  • The sensor never originates a single packet toward the relays or RTUs themselves. It only listens.
  • Over roughly two to four weeks, the sensor's baseline stabilizes: which IEDs poll which RTU, on what cadence, using which function codes. Traffic that doesn't fit that baseline — a new IP address, an unfamiliar function code, a device polling at ten times its normal rate — becomes the anomaly signal Section 4 builds on.
Where active scanning still has a place. Active scanning isn't banned outright — it's scoped. A scan against general-purpose IT assets in the OT DMZ (jump hosts, historians running standard operating systems) carries the same low risk it does anywhere else. The rule students should walk away with: know which side of the Level 2/3 boundary a device sits on, and default to passive for anything below it unless a vendor has explicitly confirmed the device tolerates active probing.

Two failure modes to watch for: first, treating a passive sensor's asset list as complete on day one — a device that only talks once a month (a backup RTU, for example) won't appear until it actually communicates, so early asset counts should be treated as a floor, not a ceiling. Second, assuming a mirrored SPAN port on an oversubscribed switch reliably copies every packet — under heavy load, switches can silently drop mirrored traffic before it reaches the sensor, so mirrored coverage should be spot-checked against a known traffic pattern, not assumed.

2. Syslog Coverage Gaps on Field Devices

The most important device on the network is often the quietest one in the log stream.

25 min

Syslog is the standard protocol and message format most IT infrastructure uses to forward event records — logins, configuration changes, errors — to a central collector for retention and analysis. It's the backbone assumption of a typical SIEM deployment: every meaningful device generates a log, and every log gets forwarded somewhere central. That assumption holds reasonably well at Level 2 and above in an OT network — HMIs, engineering workstations, jump hosts, and OT firewalls generally run modern operating systems that support syslog forwarding out of the box.

It breaks down hard at Level 0/1. Most PLCs, RTUs, and protective relays have no syslog client, no concept of a forwarded event log, and in many cases no persistent event storage at all beyond a small internal fault buffer that overwrites itself. The device that is, arguably, the single most important thing to monitor — because it's the one actually touching the physical process — is frequently the one contributing nothing to the log stream.

Analogy — the security camera that only covers half the building

A building's camera system covering every hallway and every door except the loading dock isn't "mostly covered" — it has a hole exactly where a lot of unsupervised activity could plausibly happen. Nobody would say "we have good camera coverage" about that building; they'd say "we have good coverage everywhere except the loading dock, and here is our compensating plan for that blind spot." A syslog-based OT security program needs the same honesty about Level 0/1 coverage — the gap doesn't go away by not mentioning it.

Worked example — instrumenting a legacy PLC with no logging capability at Ironwood

Ironwood Precision Manufacturing (fictional) runs a 2009-vintage PLC controlling a mixing line. The PLC has no syslog client and no forwarded event capability. Rather than accept a total blind spot, the identity of "what happened on this PLC" gets reconstructed from three compensating sources instead of one device log:

  • Passive protocol parsing. The Section 1 passive sensor, already watching the wire, decodes the Modbus function codes flowing to and from the PLC — a write to a holding register, a mode change from Run to Program — and timestamps each one, even though the PLC itself never generated a log entry.
  • Upstream device logs. The engineering workstation used to connect to the PLC does support logging — its own login events, and which project file was opened and when, become a proxy for "who was working on this PLC and when," even without a log from the PLC confirming what they actually changed.
  • Physical process correlation. The historian recording the mixer's live tag values (temperature, agitator speed, setpoint) shows exactly when a physical parameter changed — which, cross-referenced against the passive sensor's Modbus writes, tells the investigator which write actually took effect.
Table 1. Where telemetry actually comes from when the field device itself can't log.
What you want to knowIdeal sourceRealistic OT source when the ideal source doesn't exist
Who logged in and whenDevice authentication logEngineering workstation login log, physical badge/door log for the control room
What command was sentDevice command logPassive protocol decode of the function code and register address from the mirrored traffic
Whether the command took effectDevice state-change logHistorian tag-value change, or a physical process reading that moved
Configuration/logic changesDevice change log with diffVersion-controlled project-file backups compared before and after, from the engineering workstation
Teaching note. A common student instinct is to treat "the PLC doesn't log" as a dead end. Redirect that instinct: the field device not logging doesn't mean the event left no trace at all — it means the trace lives somewhere else in the environment, and finding it is the actual skill. That said, be honest with students that compensating sources are inference, not a device's own authoritative record, and should be documented as such in any incident report.

3. Time Synchronization for Correlation

A SIEM that can't agree on what time it is can't tell you what happened first.

20 min

Correlating events across multiple sources — "this remote login happened, then ninety seconds later this setpoint changed" — only works if every source's timestamp reflects the same clock, or close enough to it that the sequence of events is unambiguous. Network Time Protocol (NTP) is the standard mechanism for keeping a fleet of devices synchronized to a common time reference, typically a small number of authoritative time servers, often themselves disciplined by GPS.

OT networks are exactly where clock drift goes unnoticed longest, for a structural reason: many control-network devices are intentionally isolated from the internet and therefore from the public NTP pool most IT infrastructure syncs against by default. Left with no time source at all, a device's internal clock drifts — sometimes by seconds per day, occasionally by more — and nobody notices, because the device's own operation doesn't depend on knowing the correct time. It only becomes a problem the moment someone tries to correlate that device's log against a different system's log during an investigation.

Analogy — three witnesses with three different watches

Imagine reconstructing a car accident from three witnesses, each reporting the time on their own watch — and none of the watches agree with each other, or with the actual time. "Witness A saw the car swerve at 3:14, Witness B saw it stop at 3:12" sounds like the car stopped before it swerved, until you realize Witness B's watch runs four minutes fast. Every investigation that relies on timestamps is implicitly trusting that the watches agree. An OT SIEM ingesting a firewall log, a jump-host log, and a passively-decoded PLC event without a common time source is running exactly this experiment, usually without realizing it.

Worked example — the two-minute gap that wasn't

During a tabletop review at a fictional water utility, investigators initially concluded that a suspicious remote login to a jump host occurred two full minutes after an unauthorized setpoint change on a downstream RTU — which would have made the login irrelevant to the setpoint change, since it happened afterward. A closer look found the RTU's local clock, never synchronized to any time source, had drifted nearly three minutes fast over the eleven months since its last manual clock set. Correcting for the drift put the login before the setpoint change, by about fifty seconds — reversing the entire causal story the investigation had been building.

Design note, not a how-to

A defensible time-synchronization design places one or more hardened, GPS-disciplined time servers inside the OT environment as the authoritative internal source, and configures every device capable of NTP client behavior — Level 2 and above, and any Level 0/1 device that happens to support it — to sync against that internal source rather than reaching out to the internet. The OT time server itself may sync from an external reference, but the trust and traffic flow inward only, never allowing an inbound path to be opened toward the control network for the sake of time sync.

Where a device genuinely can't run an NTP client — a real possibility at Level 0/1 — the compensating practice is a documented, periodic manual clock check against the authoritative internal source, logged so an investigator later knows exactly how much drift to expect and correct for, rather than discovering the gap mid-investigation the way the water-utility example did.

4. Alert Triage & SIEM in an OT Context

The loudest alert isn't always the one that matters. Priority is a judgment, not a volume count.

30 min

A security information and event management (SIEM) platform aggregates events from many sources — passive network sensors, syslog from Level 2+ devices, firewall logs, authentication systems — into one searchable stream, and applies correlation rules to flag combinations worth a human's attention. A SIEM doesn't decide what matters; it decides what's worth surfacing. Deciding what matters is alert triage, and doing it well in OT requires weighing factors a generic IT triage rubric doesn't fully capture.

A batch changeover on a packaging line can generate dozens of legitimate "anomalies" in a single hour — new setpoints, valves cycling in an unusual order, a brief spike in a flow rate — all completely normal for that specific operating mode. A single unexplained write to a safety PLC's configuration register, by contrast, might generate exactly one alert all week. A triage process that ranks by volume or by generic severity score will bury the second alert under the first. OT alert triage has to weigh at least three things together, not volume alone: asset criticality (what does this device actually control, and what happens if it's wrong), safety impact (could this plausibly affect a person's safety, not just production), and confidence (how well does this match a known bad pattern versus a merely unfamiliar one).

Analogy — the ER triage nurse, not the ticket queue

An emergency room doesn't see patients in the order they arrived, or in order of how loudly they're complaining. A triage nurse weighs severity and time-sensitivity first, so a quiet patient having a heart attack gets seen before a loud patient with a sprained ankle. OT alert triage needs the same discipline: the alert that's easiest to explain away, or the quietest one in the queue, might be the one actually worth an immediate page.

Worked example — two alerts, one shift

Table 2. Two alerts arriving in the same shift at a fictional beverage plant, triaged by criticality, safety impact, and confidence rather than volume.
AlertAsset criticalitySafety impactConfidenceTriage outcome
47 setpoint-change events on Packaging Line 2 in one hourProduction, non-safetyNone — matches a scheduled changeoverHigh match to known changeover patternLog and close; expected behavior for this shift's schedule
One unexplained write to the sterilization holding-time register on the thermal-process safety PLCSafety-critical process controlDirect — governs pathogen kill stepNo known-good explanation on fileImmediate page to the on-call controls engineer; do not wait for a second occurrence
Facilitator prompt. Ask students why alert volume, by itself, would rank the changeover alerts above the single safety-PLC write if a generic "alerts per hour" dashboard were the only lens in use. The answer is the whole point of this section: volume measures how often something happens, not how much it matters.

5. Incident Lifecycle & the Containment Problem

The standard playbook says isolate the host. Sometimes the plant can't accept that answer.

30 min

Most incident-response frameworks describe a similar lifecycle: Preparation, Detection & Analysis, Containment, Eradication, Recovery, and Post-Incident Activity. The first two phases work almost identically in OT and IT — the differences this lesson has already covered (passive monitoring, syslog gaps, time sync) live inside detection and analysis. It's containment — stopping the incident from getting worse — where OT and IT genuinely diverge, and where a well-meaning IT-trained responder can cause real harm by applying the wrong default.

In IT, the default containment move for a compromised host is to isolate it — pull the network cable, disable the switch port, quarantine the endpoint — while investigation continues elsewhere. That default assumes the host can be safely disconnected without an immediate physical consequence, which is true of nearly every IT endpoint. It is not automatically true of an OT asset. A PLC actively holding a valve position, running a safety interlock, or mid-cycle on a batch process may not have a safe "disconnected" state at all — depending on the specific control architecture, cutting its network connection could leave it holding its last command indefinitely, freeze it in an unsafe intermediate state, or in some designs trigger a fail-safe shutdown that itself has a physical consequence (a line stopping mid-batch, a boiler tripping) that has to be managed, not just accepted as a side effect of "containing" the incident.

Analogy — pulling the plug on someone mid-surgery

Unplugging a hospital's guest WiFi router because it's misbehaving is a minor inconvenience. Unplugging a patient monitor mid-procedure because its software looks compromised is not the same category of decision, even though "unplug it" is the same physical action in both cases. The decision to disconnect has to weigh what the device is doing right now, not just whether it's suspect. OT containment decisions live entirely in that second category far more often than IT responders expect.

Worked example — a suspicious write to a live batch controller

At Ironwood Precision Manufacturing (fictional), the Section 4 triage process flags an unexplained write to a mixer PLC that is, at that exact moment, mid-cycle on an active batch. The incident-response playbook does not default to "isolate the PLC." Instead, it walks a decision the playbook itself has to spell out in advance:

  1. Confirm current process state with the shift operator before any network action — is this PLC actively controlling something right now, and what happens physically if its connection drops?
  2. Weigh compensating containment options that don't require full isolation: restricting the specific command/register the write targeted at the firewall, increasing monitoring resolution on that PLC specifically, or placing an operator in direct visual/manual oversight of the process while investigation continues.
  3. Escalate the isolation decision itself to a named role who can authorize it — typically a controls engineer or plant operations lead jointly with the security lead — rather than letting a security analyst unilaterally sever a live control loop.
  4. If isolation is chosen, do it in coordination with operations so the process can be brought to a safe, planned state first, rather than as a unilateral, unannounced network action.
Playbook, in this context, is the predefined, written procedure that captures exactly this decision structure ahead of time — who has to be consulted, what compensating options exist short of full isolation, and who is authorized to approve isolation when it's genuinely necessary — so that decision isn't improvised for the first time during a live incident, under pressure, by whoever happens to be on shift.

None of this means OT incidents never get contained by isolation — sometimes isolation is exactly the right call, and delaying it out of excessive caution is its own failure mode. The point is that the decision requires an extra input IT containment doesn't: current physical process state, confirmed with the people who can actually see it, before the network action happens.

6. Side by Side: IT Incident Response vs. OT Incident Response

Same lifecycle phases — very different defaults once you reach containment.

15 min
Table 3. IT incident-response practice and OT incident-response practice compared across the dimensions this lesson covers.
DimensionTypical IT practiceTypical OT practice
Asset discovery methodActive scanning is routine and low-riskPassive monitoring by default; active scanning scoped to IT-grade assets only
Event logging coverageNear-universal; nearly every host supports syslogStrong at Level 2+; frequently absent at Level 0/1 field devices
Time synchronizationPublic NTP pool, largely automaticRequires a dedicated internal, one-way-trusted time source; drift often goes unnoticed for months
Alert triage basisVolume and generic severity scoring commonAsset criticality and safety impact must outweigh volume
Default containment actionIsolate the host immediatelyConfirm physical process state first; isolation may require operations sign-off
Who approves containmentSecurity analyst/on-call, usually unilateralJoint decision with controls engineering or operations for anything touching a live process
Recovery validationConfirm system integrity/patch stateConfirm system integrity and that the physical process is in a known, safe state

The lifecycle phases are identical on paper. What changes is which inputs each phase requires before it's safe to act — and in OT, several of those inputs are physical, not just digital.

Part B

Hands-On — Triage Alerts, Map Concepts, and Write a Playbook Section

Roughly 2 hours of simulation and applied design work. Everything below runs in your browser.

7. Simulation: Alert Triage & Containment Decision Builder

Build an alert the way a real triage analyst would evaluate it — asset, alert source, confidence, safety impact, and current process state must all be weighed together.

35 min

Simulation only — no real network traffic, no real SIEM, no live equipment of any kind is touched or represented with real data.

This builder models a single alert arriving against the fictional Cascade Summit Electric, Substation 12 network. Choose the asset the alert concerns, where the alert came from, how confident the detection is, whether it carries a safety implication, and what the affected asset is doing physically right now. Select Triage this alert and the tool reasons through the combination the way a triage analyst and a controls engineer would together — recommending a priority level and a containment action, and explaining why full isolation is or isn't the right first move.

Alert builder

Affected asset What does this alert concern?
Alert source Where did this detection come from?
Detection confidence How well does this match a known bad pattern?
Safety impact Could this plausibly affect a person's safety?
Current process state What is the asset doing right now?

Fill in all five fields, then choose Triage this alert. Feedback on this specific alert appears here.

Alert queue triaged so far in this session.
AssetSourceConfidenceSafety impactPriority
No alerts triaged yet.
Facilitator prompt. Ask participants to deliberately build one alert they expect the tool to recommend full isolation for (for example, a high-confidence, safety-related alert on an idle field controller) and one they expect it to flag as a containment dilemma (the same alert, but on a controller mid-batch or mid-safety-event). Compare the tool's stated reasoning to what the group predicted — the process-state field is usually what surprises people most.

8. Mapping Lab: Scenario to Concept

Six short scenarios. Match each to the monitoring or response concept it actually demonstrates.

25 min

Activity 8.1 — Scenario-to-concept matching

25 minutes · pairs
Instructions. Each row describes a real monitoring or incident-response moment in a plant. Choose the single concept from this lesson's key terms that the scenario is demonstrating — several scenarios could plausibly touch more than one term, but only one is the best fit for what's actually being described.

Individual · 6 min

Answer all six on your own without discussion.

Pairs · 10 min

Compare with a partner. Argue any row where you disagree before checking.

Share · 9 min

Report the row your pair argued longest about. That row is usually the most teachable.
Table 4. Match each monitoring/response scenario to the concept it demonstrates.
ScenarioConcept

9. Design a Compensating Monitoring & Containment Plan

The one-page deliverable that turns Sections 2 and 5's reasoning into something a real shift team can follow.

30 min

A written incident-response playbook section for a specific asset class is the short document that answers, before the alert ever fires, exactly what telemetry substitutes for a missing device log, who gets consulted before any containment action, and what happens when full isolation isn't an option the plant can accept. Without one, every incident gets negotiated from scratch under time pressure — usually while a process is running and nobody wants to be the person who guesses wrong.

Analogy — the loading-dock blind spot, one more time

Recall the building whose camera system misses the loading dock. A good compensating plan is the laminated procedure already taped near the dock supervisor's desk — what to check manually, on what schedule, and who to call if something looks wrong — written before anyone needs it, not improvised the day something actually happens there.

Activity 9.1 — Draft a one-page playbook section for a legacy field controller (assessment artifact)

30 minutes · individual, then gallery walk
Deliverable. One page, submitted as a PDF or a single slide, written for a real plant shift team at a fictional organization of your choosing (utility, manufacturer, or another OT sector), covering a single legacy PLC or RTU with no native logging capability and no safe network-isolation fallback while it is actively controlling a process.

Your playbook section must contain:

  1. Compensating telemetry — since the device itself doesn't log, name the specific upstream or physical sources (per Table 1) that stand in for a device log for this asset.
  2. Time-sync expectation — state where this asset gets its time reference, or, if it can't run NTP, the documented manual-check cadence and expected drift tolerance.
  3. Triage criteria — the specific criticality and safety-impact factors that would make an alert on this asset a page-immediately priority versus a log-and-review priority.
  4. The containment decision path — who must confirm current physical process state before any network action, and who is authorized to approve full isolation if it becomes necessary.
  5. Compensating containment options — at least two actions short of full isolation that could contain a suspected incident while the asset remains mid-process.
  6. Recovery validation — what must be confirmed, both digitally and physically, before this asset is considered fully recovered.

Success criteria

  • A new shift supervisor could read the section and know exactly who to call and what to check before touching the network.
  • The isolation-approval clause names a specific role, not a vague "management."
  • At least one compensating containment option doesn't require disconnecting the asset.
  • The telemetry clause names an actual source (per Table 1), not just "increase logging."

Gallery walk. Post your playbook section. Read three others. On a sticky note, write the one clause you would add if this were your own plant.

10. Knowledge Check

Five questions. Feedback explains the reasoning, not just the letter.

15 min
1. Why does OT security operations default to passive monitoring rather than active vulnerability scanning for Level 0/1 field devices?
2. A PLC has no syslog client and no forwarded event log. Which combination of compensating sources best reconstructs "what happened" on that device during an investigation?
3. An RTU's clock has drifted three minutes fast because it was never synchronized to a time source. What is the most direct consequence for an investigation that relies on this RTU's timestamps?
4. In the same shift, a SIEM surfaces 47 setpoint-change alerts from a scheduled packaging changeover and one unexplained write to a safety PLC's configuration register. Which triage approach reflects sound OT practice?
5. A suspicious write is detected on a PLC that is currently mid-cycle on a live batch. Following OT-aware incident-response practice, what should happen before any network containment action is taken?

Further Reading

Primary sources to verify every technical claim above before using this lesson with students.

Reference

Standards, guidance, and video

Video Supplementary video on OT monitoring and incident response

A companion video introducing monitoring and detection concepts. Useful as a pre-class primer or a Part A refresher; verify the specific content aligns with this lesson before assigning it.

Federal guidance NIST SP 800-82 Rev. 3 — Guide to OT Security

Background on tailoring monitoring, logging, and incident handling for OT environments, referenced throughout Sections 1–5.

Federal guidance NIST SP 800-61 Rev. 2 — Computer Security Incident Handling Guide

The general incident-lifecycle framework (Preparation, Detection & Analysis, Containment, Eradication, Recovery, Post-Incident Activity) adapted for OT in Section 5.

Standard ISA/IEC 62443-3-3 — System Security Requirements

Foundational Requirements covering timely response to events and audit/logging — the standards basis for the monitoring and triage guidance in Sections 2–4.

Draft status. This lesson page is a first AI-generated draft prepared for OT-101. It has not yet been reviewed by a human subject-matter expert. Verify every standard reference, protocol detail, and technical claim against the primary sources above before using it with students.