ExamRange

In this simulation, you will analyze firewall access control strategies. You will learn how implicit rules govern network traffic and why a restrictive posture is essential for minimizing the attack surface.

CND (312-38) Network Defense Simulation

Network Scenario

You are reviewing the configuration of a newly deployed perimeter firewall protecting the corporate data center. The business requirements state that only web traffic (HTTP/HTTPS) and specific secure management protocols (SSH from dedicated admin jump-boxes) should reach the servers. Everything else must be blocked to minimize exposure and stop unauthorized lateral movement.

Admin Jump-Box: 10.50.0.10
Data Center Web Servers: 10.100.10.0/24

Traffic & Logs

// FIREWALL ACL CONFIGURATION

RULE 10: PERMIT TCP ANY 10.100.10.0/24 EQ 80
RULE 20: PERMIT TCP ANY 10.100.10.0/24 EQ 443
RULE 30: PERMIT TCP HOST 10.50.0.10 10.100.10.0/24 EQ 22
RULE 999: DENY IP ANY ANY LOG

// FIREWALL TRAFFIC LOG

14:22:01 [MATCH RULE 20] [ALLOW] SRC: 198.51.100.4:55123 -> DST: 10.100.10.50:443 [PROTO: TCP]
14:23:45 [MATCH RULE 999] [DENY] SRC: 10.20.5.55:49111 -> DST: 10.100.10.50:3389 [PROTO: TCP]
14:24:10 [MATCH RULE 999] [DENY] SRC: 203.0.113.8:50221 -> DST: 10.100.10.50:23 [PROTO: TCP]

Analysis: Traffic targeting approved ports (443) passes. Unauthorized connection attempts (RDP on 3389, Telnet on 23) hit the catch-all rule at the bottom and are explicitly logged and dropped.

Question

Jason has set a firewall policy that allows only a specific list of network services and denies everything else. This strategy is known as a ____________.