Complete the code to define a firewall rule that allows SCADA traffic on port 502.
firewall_rule = "allow tcp port [1] from any to scada_network"
Port 502 is the standard port for Modbus TCP, commonly used in SCADA systems.
Complete the code to specify the DMZ network segment for SCADA devices.
dmz_network = "[1].0.0/24"
The 10.0.0.0/24 subnet is often used for private networks including DMZ segments.
Fix the error in the firewall rule to block all traffic except SCADA on port 502.
firewall_rule = "block all except tcp port [1]"
Port 502 is the correct port to allow SCADA traffic while blocking others.
Fill both blanks to create a firewall rule that allows SCADA traffic from the DMZ to the control network.
firewall_rule = "allow tcp port [1] from [2] to control_network"
Port 502 is for SCADA traffic, and 10.0.0.0/24 is the DMZ subnet sending traffic to the control network.
Fill all three blanks to define a firewall rule that blocks all traffic except SCADA on port 502 from the DMZ to the control network.
firewall_rule = "block all except tcp port [1] from [2] to [3]"
Port 502 is the SCADA port, 10.0.0.0/24 is the DMZ subnet, and control_network is the destination network.