0
0
SCADA systemsdevops~20 mins

Firewall and DMZ for SCADA in SCADA systems - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
SCADA Firewall & DMZ Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding the purpose of a DMZ in SCADA networks

What is the primary purpose of placing a Demilitarized Zone (DMZ) between the SCADA network and the corporate network?

ATo isolate SCADA systems from the corporate network and control external access securely
BTo allow unrestricted access between SCADA and corporate networks for easy data sharing
CTo replace firewalls entirely by using the DMZ as the only security layer
DTo connect all SCADA devices directly to the internet for remote monitoring
Attempts:
2 left
💡 Hint

Think about how a DMZ acts like a buffer zone to protect sensitive systems.

💻 Command Output
intermediate
2:00remaining
Firewall rule effect on SCADA traffic

Given the following firewall rule on a SCADA firewall:

allow tcp from 192.168.10.0/24 to 10.0.0.5 port 502

What will be the effect of this rule?

ABlocks Modbus TCP traffic from 192.168.10.0/24 to 10.0.0.5 on port 502
BBlocks all traffic to 10.0.0.5 regardless of source
CAllows all traffic from 192.168.10.0/24 to 10.0.0.5 on any port
DAllows Modbus TCP traffic from 192.168.10.0/24 to 10.0.0.5 on port 502
Attempts:
2 left
💡 Hint

Port 502 is commonly used for Modbus TCP in SCADA systems.

Troubleshoot
advanced
2:30remaining
Diagnosing SCADA communication failure through firewall

A SCADA operator reports that the control center cannot communicate with a remote RTU (Remote Terminal Unit). The firewall between them has the following rules:

1. allow tcp from 10.1.1.0/24 to 192.168.100.10 port 102
2. deny all from any to any

What is the most likely reason communication is failing?

AThe deny all rule blocks all traffic including allowed rules
BThe allow rule is too specific and does not match the RTU's IP or port
CThe firewall rules are correct; the problem is with the RTU hardware
DThe allow rule should be placed after the deny all rule to work
Attempts:
2 left
💡 Hint

Check if the IP addresses and ports in the allow rule match the actual devices and protocols used.

🔀 Workflow
advanced
3:00remaining
Proper sequence to configure a DMZ for SCADA

What is the correct order of steps to securely configure a DMZ between the corporate network and SCADA network?

A2,1,3,4
B2,3,1,4
C1,2,3,4
D3,2,1,4
Attempts:
2 left
💡 Hint

Think about physical setup before rules and testing last.

Best Practice
expert
3:00remaining
Choosing the best firewall strategy for SCADA security

Which firewall strategy best balances security and operational reliability for a SCADA system connected to a corporate network?

AUse a single firewall with open rules to simplify management
BDisable firewalls and rely on SCADA device authentication only
CDeploy multiple firewalls with a DMZ to isolate SCADA and corporate networks
DAllow all traffic from corporate to SCADA network during business hours
Attempts:
2 left
💡 Hint

Consider defense in depth and isolation principles.