0
0
SCADA systemsdevops~20 mins

Network segmentation (IT/OT separation) in SCADA systems - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
IT/OT Network Segmentation Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Why is network segmentation important in IT/OT environments?

In a SCADA system environment, why do organizations separate IT and OT networks?

ATo allow unrestricted access between IT and OT networks for easier management
BTo increase the speed of data transfer between IT and OT devices
CTo reduce the risk of cyber attacks spreading between IT and OT systems
DTo combine all devices into a single network for cost savings
Attempts:
2 left
💡 Hint

Think about how isolating parts of a network can protect critical systems.

💻 Command Output
intermediate
2:00remaining
Identify the firewall rule effect on IT/OT traffic

Given the following firewall rule, what will be the effect on traffic between IT and OT networks?

SCADA systems
iptables -A FORWARD -s 192.168.10.0/24 -d 10.0.0.0/24 -j DROP
ABlocks all traffic from IT network 192.168.10.0/24 to OT network 10.0.0.0/24
BAllows all traffic from OT network 10.0.0.0/24 to IT network 192.168.10.0/24
CBlocks all traffic from OT network 10.0.0.0/24 to IT network 192.168.10.0/24
DAllows all traffic between IT and OT networks
Attempts:
2 left
💡 Hint

Look at the source (-s) and destination (-d) IP ranges and the DROP action.

🔀 Workflow
advanced
3:00remaining
Order the steps to implement IT/OT network segmentation

Arrange the following steps in the correct order to implement network segmentation between IT and OT networks.

A1,2,3,4
B1,3,2,4
C3,2,1,4
D3,1,2,4
Attempts:
2 left
💡 Hint

Think about understanding current state before defining zones.

Troubleshoot
advanced
2:00remaining
Diagnose why OT devices cannot communicate with IT servers

OT devices cannot reach IT servers after segmentation. Which of the following is the most likely cause?

AFirewall rules are blocking OT to IT traffic
BOT devices have incorrect IP addresses in the IT subnet
CIT servers are powered off
DOT devices use unsupported protocols
Attempts:
2 left
💡 Hint

Consider what segmentation usually controls between networks.

Best Practice
expert
2:30remaining
Choose the best practice for secure IT/OT segmentation

Which practice best enhances security in IT/OT network segmentation?

AUse a single flat network for both IT and OT to reduce complexity
BUse a dedicated firewall with strict rules and monitor logs continuously
CAllow all traffic between IT and OT to simplify operations
DDisable all monitoring to avoid performance impact
Attempts:
2 left
💡 Hint

Think about how to keep networks secure and detect issues early.