A network engineer is configuring an extended IPv4 Access Control List (ACL) on a stateless router interface filtering outbound traffic leaving a DMZ subnet () toward an internal corporate LAN (). DMZ web servers (–) must respond to HTTPS client requests initiated from the internal LAN and send syslog telemetry to an internal monitoring server () over UDP port 514. Which of the following ACL configuration entries are required on this interface to satisfy these requirements while accounting for stateless filtering mechanics? (Select TWO.)
- An entry permitting TCP traffic from source network 192.168.100.0/24 with source port 443 to destination network 10.0.0.0/8 on ports greater than 1023Answer
- An entry permitting UDP traffic from source network 192.168.100.0/24 to destination IP 10.2.2.50/32 with destination port 514Answer
- CAn entry permitting UDP traffic from source network 192.168.100.0/24 with source port 443 to destination network 10.0.0.0/8
- DAn explicit deny ip any any statement placed as the first entry in the access list to ensure unpermitted traffic is blocked before evaluation
Answer
The required entries are the rule permitting TCP traffic from source network 192.168.100.0/24 with source port 443 back to destination network 10.0.0.0/8 on ports greater than 1023, and the rule permitting UDP traffic from source network 192.168.100.0/24 to destination host 10.2.2.50/32 on destination port 514.
In a stateless firewall or router extended ACL configuration, return traffic for established sessions is not tracked automatically. HTTPS uses TCP (port 443), so allowing response packets from DMZ servers back to client dynamic ports (> 1023) on the 10.0.0.0/8 network requires an explicit TCP permit entry. Additionally, syslog sends log data over UDP port 514, requiring a targeted UDP permit entry to the monitoring server at 10.2.2.50.
Step-by-Step Solution
Key Concept
Stateless Access Control List (ACL) Traffic Directionality and Port Selection