0
0
SCADA systemsdevops~20 mins

Communication network topology in SCADA systems - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
SCADA Network Topology Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Identify the topology type from description

A SCADA system has multiple remote terminal units (RTUs) connected to a central master station. Each RTU communicates directly with the master station, but not with each other. What type of communication network topology is this?

ARing topology
BMesh topology
CStar topology
DBus topology
Attempts:
2 left
💡 Hint

Think about a central point connecting all devices directly.

💻 Command Output
intermediate
1:30remaining
Output of network diagnostic command in ring topology

In a SCADA ring topology network, a diagnostic command is run to check the path of communication. The command output shows the sequence of nodes visited: RTU1 -> RTU2 -> RTU3 -> RTU4 -> RTU1. What does this output indicate?

SCADA systems
ping -r RTU1 RTU4
AThe network uses a star topology
BThe network has a broken link between RTU3 and RTU4
CRTU4 is isolated from the network
DThe network forms a closed loop connecting all RTUs
Attempts:
2 left
💡 Hint

Look for repeated nodes indicating a loop.

Configuration
advanced
2:00remaining
Configure a redundant communication link in a SCADA mesh network

You want to configure a redundant communication link between two RTUs in a mesh topology to improve fault tolerance. Which configuration snippet correctly adds a secondary link between RTU2 and RTU3?

A
link RTU2 RTU3 primary
link RTU2 RTU3 secondary
B
add_link RTU2 RTU3
add_link RTU3 RTU2
C
connect RTU2 RTU3
connect RTU2 RTU3 backup
D
link RTU2 RTU3
link RTU2 RTU4
Attempts:
2 left
💡 Hint

In mesh, links are bidirectional and redundancy means multiple links between nodes.

Troubleshoot
advanced
2:00remaining
Diagnose communication failure in bus topology

In a SCADA bus topology, communication between the master station and RTU4 suddenly stops. Other RTUs communicate fine. What is the most likely cause?

AThe bus cable is broken between RTU3 and RTU4
BThe master station is down
CRTU4 has a power failure
DRTU1 is causing network congestion
Attempts:
2 left
💡 Hint

In bus topology, a break in the cable affects downstream devices.

🔀 Workflow
expert
2:30remaining
Order steps to deploy a star topology SCADA network

Arrange the steps in the correct order to deploy a star topology SCADA communication network.

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

Think about hardware setup before configuration and testing.