Lesson Overview
Lesson 3 gave you the device roles that populate an OT network. This lesson gives you the plumbing those devices actually run on — and it will feel deceptively familiar. Ethernet, TCP/IP, VLANs, DHCP, DNS, and NTP are the exact same protocols your students already manage on the campus IT network. That familiarity is useful, and it's also a trap: the protocols are identical, but the configuration choices around them are frequently the opposite of what an IT background trains someone to expect. An office network wants automatic, convenient, internet-connected defaults. A control network often wants predictable, static, self-contained ones — and faculty who don't understand why will "fix" an OT network into a less reliable state, with the best of intentions.
We'll work through the shared foundation of Ethernet and TCP/IP first, then the two tools OT uses to carve one physical network into separated zones — VLAN and segmentation — then the addressing and naming services that most often get "office-configured" by mistake — DHCP and DNS — and finish with the service most people forget matters at all until an incident investigation falls apart because of it: NTP.
Think of these protocols as the plumbing and electrical code inside two very different buildings. A hotel (the office network) is built for constant turnover: guests come and go, so rooms get reassigned on the fly, the front desk looks up which room you're in on request, and the clocks on the wall just sync to whatever the internet says the time is. A hospital's operating wing (the control network) is built for the opposite: the same room is always the same room, staff don't want to look anything up mid-procedure because a directory server might be down, and every clock on every monitor in that wing is synced to one trusted source, because if two machines disagree about the time by even a few seconds, nobody can reconstruct what happened during a code. Same underlying plumbing — very different reasons for how it's configured.
Learning objectives
By the end of this lesson, you will be able to:
- Explain why familiar IT protocols such as Ethernet and TCP/IP appear in OT networks yet are frequently configured differently than on a typical office LAN.
- Identify how VLANs implement network segmentation and align with Purdue-model zone boundaries on shared switching hardware.
- Compare static IP addressing with DHCP-based addressing in a control-network context, including the operational tradeoffs each creates.
- Describe why OT networks commonly rely on local, GPS-disciplined time sources for NTP synchronization instead of internet time servers.
- Evaluate a described network configuration and identify which OT-appropriate practice — static addressing, VLAN segmentation, or local time sync — it is missing.
The shared foundation: Ethernet and TCP/IP
≈ 35 minUnderneath almost every modern control network, including the industrial protocols covered in Lesson 5, sits the same Ethernet and TCP/IP stack that carries email and web traffic on any office network. This convergence is exactly what Lesson 1 described: OT abandoned proprietary serial links and adopted commodity Ethernet hardware because it was cheaper, faster, and easier to find replacement parts for. The addressing rules, the framing, the routing logic — all of it is the same TCP/IP your students already teach in a networking course.
What's different is what's connected to it and how forgiving that traffic is expected to be. An office workstation that receives a malformed or unexpected packet typically drops it and moves on without anyone noticing. Many field devices — PLCs and RTUs built with limited processing headroom and firmware that hasn't been updated in years — handle the same situation far less gracefully: a burst of unexpected broadcast traffic, a port scan, or even a legitimate but unfamiliar packet type can occasionally cause a controller to stall, or in rarer documented cases, fault outright. This is one reason OT network engineers configure switches to restrict what can reach a given device far more tightly than a typical office switch would.
Think of TCP/IP as the postal system: the addressing scheme, the routing between post offices, and the basic idea of an envelope with a destination are identical whether the letter is going to a downtown office tower or a rural farmhouse. What differs is how the recipient handles an unexpected piece of mail. The office tower has a mail room staffed to sort and discard junk mail without disruption. The rural farmhouse might have one elderly resident who opens every single envelope personally and can be genuinely thrown off by something odd showing up unannounced. Same postal system, very different tolerance for surprise.
At a wastewater treatment plant, the plant-floor switch stack carries the exact same 802.3 Ethernet frames and IPv4 addressing as the administration building's network two hundred feet away. But the plant-floor switches are configured with strict port security (only one known device's MAC address may connect to each port), broadcast storm control, and no uplink to the internet at all — while the administration building's switches allow any laptop to join, run DHCP, and reach the internet freely. Same protocol stack, deliberately different tolerances.
This is a good moment to remind students that "it's just TCP/IP" is true and also somewhat beside the point. The protocol being familiar is exactly why IT staff are tempted to manage an OT switch the way they'd manage an office switch — and that temptation is the whole reason this lesson exists.
VLANs and segmentation: separating zones without new cable
≈ 45 minA VLAN (virtual local area network) logically divides one physical switch, or a stack of switches, into multiple separate broadcast domains — groups of ports that can talk to each other freely but cannot reach ports in a different VLAN without passing through a router or firewall. The key word is logically: the plant-floor HMI and the front-office accounting PC can be plugged into the same physical switch cabinet and still be completely unable to reach each other on the network, because they've been assigned to different VLANs.
Segmentation is the broader security goal that VLANs are one common tool for achieving: dividing a network into isolated zones connected only through governed conduits, so that a fault or compromise in one zone doesn't automatically reach another. This is the zones-and-conduits vocabulary from Lesson 2's Purdue model discussion made concrete — a VLAN boundary is frequently how a Purdue level boundary is actually implemented on real switching hardware, alongside firewalls and routers that control what's allowed to cross between VLANs.
Diagram: three VLANs share one physical switch stack. Enterprise, DMZ, and plant-floor devices are logically separated even though they share the same cables and hardware; a firewall between VLANs, not the switch itself, decides what traffic — if any — is allowed to cross.
VLANs are like painting different colored lines down the hallways of one office building instead of building separate hallways. Everyone still walks on the same physical floor, but staff have been told — and the building's access-control system enforces — that people on the blue-line path can't wander onto the red-line path without going through a specific checkpoint. You didn't pour new concrete; you changed the rules about who can walk where on the concrete you already had.
A bottling plant's core switch has 48 physical ports. Ports 1–16 are assigned to VLAN 10 (front-office PCs and a shared printer), ports 17–32 to VLAN 20 (the historian and a remote-access jump host), and ports 33–48 to VLAN 30 (three PLCs and two HMIs on the line). A single trunk port on that same switch carries all three VLANs, tagged, up to a firewall, which is configured to allow the historian to pull read-only data from the PLCs' VLAN, but blocks the front-office VLAN from reaching the plant-floor VLAN entirely — even though, physically, all of it is one switch and one building.
| Question | Answer |
|---|---|
| Does a VLAN require new cabling? | No — it's a logical grouping configured on existing switches |
| Can devices in different VLANs reach each other by default? | No, not without a router or firewall configured to permit it |
| Does a VLAN alone enforce security policy? | No — the firewall or router sitting between VLANs is what actually allows or blocks traffic |
| Can a misconfigured trunk port undermine a VLAN boundary? | Yes — trunk and native VLAN misconfiguration is a well-documented way segmentation quietly fails |
Students sometimes assume a VLAN is itself a firewall. It isn't — a VLAN only defines who's in the same broadcast domain. Whatever sits at the boundary between VLANs (a firewall, a Layer 3 switch with access control lists) is what actually enforces the zone-and-conduit policy Lesson 2 introduced. Worth stating explicitly and revisiting.
DHCP and DNS: why "automatic" is often the wrong default
≈ 45 minDHCP (Dynamic Host Configuration Protocol) automatically hands a connecting device an IP address, a subnet mask, a default gateway, and often a DNS server address, so nobody has to configure any of it by hand. It's the reason a laptop or phone just works the instant it joins any office or home network. In OT, DHCP is frequently disabled in favor of static addressing — every device is configured, by hand, with a permanent IP address that never changes — precisely because "it just works automatically" is not actually the priority; "it comes back exactly the way it was" is. A PLC that loses power in a plant-wide outage needs to reappear at the same address every technician's documentation, every HMI configuration, and every firewall rule already expects, without depending on a DHCP server being reachable — or even powered on — during that restart.
DNS (Domain Name System) resolves a human-readable hostname like historian01 into the IP address a device actually needs to connect to. It's essential on the open internet, where sites change IP addresses constantly. In a control network, the set of devices that need to talk to each other is small, known, and stable — so many OT environments skip DNS for critical control paths entirely, using static hosts files or hard-coded IP addresses instead. The logic is the same as with DHCP: a name-resolution service is one more thing that can fail, and a failure in DNS shouldn't be able to stop an HMI from reaching a PLC it's talked to the exact same way for the last five years.
| Service | Typical office/enterprise default | Common OT practice | Why the difference matters |
|---|---|---|---|
| DHCP | Enabled everywhere; devices get an address automatically | Often disabled; devices use permanent static addresses | A restart after a power event shouldn't depend on a DHCP server being available, and every address stays predictable for documentation and firewall rules |
| DNS | Used for nearly everything, including internal hostnames | Often replaced by static hosts files or hard-coded IPs for control paths | A DNS outage shouldn't be able to stop time-sensitive communication between devices that never change anyway |
| VLAN / segmentation | Used mainly for guest Wi-Fi or department separation | Used to enforce Purdue-model zone boundaries between IT and OT | Limits how far a compromise or fault on one device can spread |
| NTP | Points at internet time servers (e.g. a public NTP pool) | Points at a local, GPS-disciplined clock | Accurate time sync shouldn't depend on an internet path that OT networks often don't have at all |
DHCP is a hotel room key: convenient, temporary, and reissued to whoever needs it next — exactly right for a building full of strangers passing through. Static addressing is the key to your own house: the same key opens the same lock every single day for years, and you'd be furious if it suddenly stopped working because "the front desk" was closed. DNS is a phone book for a city of thousands of businesses you've never called before; a hard-coded IP address is the landline number for your one sibling, memorized since childhood, that you'll never need a phone book to dial.
A maintenance technician at a food-processing plant adds a new unmanaged switch to expand a spare port, and — without realizing it — the switch has DHCP server functionality enabled out of the box. Within minutes, several PLCs and the plant's HMI, all normally configured with static addresses, begin logging address conflicts as the rogue DHCP server hands out addresses that collide with ones already statically assigned. Communication between the HMI and multiple controllers drops intermittently for the rest of the shift, and it takes an engineer over an hour to trace the cause back to one small unmanaged switch that was never supposed to run DHCP at all.
The rogue-DHCP-server scenario above is a documented, recurring real-world failure mode, not a hypothetical — it's worth having students say out loud why a static-only OT network is more vulnerable to this specific mistake than a DHCP-based one would be (a static device has no mechanism to reject a bad address offer, because it never asks for one in the first place — the conflict comes from the rogue server assigning an address that collides with what's already configured).
NTP and time synchronization: the service nobody notices until it's wrong
≈ 35 minNTP (Network Time Protocol) keeps every device's clock synchronized to a common time source, typically to within milliseconds. On an office network, that source is almost always somewhere on the internet — a public NTP pool, or a time service baked into the operating system. In a control network, that same internet path frequently doesn't exist, and even where it does, OT time sync is commonly pointed instead at a local, GPS-disciplined clock: a small appliance that receives an extremely precise time signal from GPS satellites and distributes it to every device on the plant network, with no dependency on any external network path at all.
Accurate, consistent time matters far more in OT than the everyday case of "the clock on my laptop is a few seconds off" suggests. Protective relays (the IEDs from Lesson 3) need synchronized time to sequence-of-events records that determine, down to the millisecond, which device tripped first during a fault — the entire point of that record is figuring out cause and effect. And during any incident investigation, whether it's a physical fault or a cybersecurity event, alarm and log timestamps from every device involved need to agree, or reconstructing what actually happened in what order becomes difficult or impossible.
Diagram: an office network's clocks trace back to an internet NTP pool; a plant network's clocks trace back to a local, GPS-disciplined appliance that needs no internet connection at all. The GPS path keeps time sync working even on an isolated OT network.
Picture an orchestra. If every musician quietly checked their own personal watch to decide when to come in, small drifts in each watch would gradually pull the whole piece out of sync — a few seconds here and there, and nobody could reconstruct afterward who actually came in early. A conductor solves this by giving everyone one shared, visible beat to follow. A GPS-disciplined clock is that conductor for a control network: every device follows the same beat, so afterward, if something went wrong, you can trust the timeline you reconstruct from everyone's logs.
During a fault investigation at a substation, engineers pull sequence-of-events logs from three protective relays to determine which breaker tripped first. Two of the relays are synced to the substation's GPS clock and agree to within a few milliseconds. The third relay, installed by a different contractor and left on its factory default time source, is off by almost four minutes — making it look, on paper, as though it tripped well before the fault even occurred. The investigation has to discard that relay's timeline entirely and rebuild the sequence from the two correctly synced devices, adding hours to a report that a correctly configured NTP source would have prevented.
NTP is easy to skip in a syllabus because it feels minor compared to segmentation or patching. Resist that — ask students to imagine trying to write an incident report where every device disagrees about what time it is, and the stakes usually land immediately.
Activity: Match the Protocol to the OT-Appropriate Practice
Individual, then pair-share ≈ 25 minIndividual (12 min): For each protocol or service, select the description that best matches how it is commonly configured in an OT network. Pair-share (13 min): Compare answers with a neighbor and discuss any you disagreed on — several descriptions can sound plausible for more than one row, but each has one best fit.
| Protocol or service | Common OT-appropriate practice |
|---|---|
| Ethernet / TCP/IP | |
| VLAN / Segmentation | |
| DHCP | |
| DNS | |
| NTP |
Simulation: Network Config Explorer
≈ 20 minSelect a service below to see its role and its typical OT-appropriate configuration, then use Simulate an Office-Style Misconfiguration to see what happens if that service is left configured the way it would be on a typical office LAN instead. Nothing here touches a real device, network, or protocol; it's a model built to compare consequences across configuration choices.
Review & Knowledge Check
≈ 20 minFive questions covering the lesson's key distinctions. Answer each, then select Grade My Quiz to see your score and an explanation for every item.
Have each faculty member take a simple network scenario they define themselves — a building automation network, a lab's isolated bench setup, or a hypothetical small plant — and produce a one-page written configuration recommendation covering all four services from this lesson: whether DHCP or static addressing is appropriate and why, how they would use VLANs to separate at least two zones, whether DNS or static hosts files fit their control paths, and where their NTP source should point. A short rationale sentence per service is enough to confirm the "automatic isn't always better" reasoning transferred before Lesson 5 introduces the industrial protocols that ride on top of this network foundation.
Further Reading
- 📄 Download: IT Protocols in OT Networks — Quick Reference (PDF) — a printable one-page comparison of IT-default versus OT-appropriate configuration for Ethernet/TCP-IP, VLANs, DHCP, DNS, and NTP, suitable for classroom handout.
- NIST SP 800-82 Rev. 3: Guide to Operational Technology (OT) Security — the standard federal reference for OT network architectures and controls, including segmentation and addressing guidance relevant to this lesson.
- Foundations of OT Cybersecurity: Asset Inventory Guidance for Owners and Operators (CISA) — practical grounding for knowing what's actually connected to the network before configuring it.