A network engineer is deploying a stateless Access Control List (ACL) on a router WAN interface to allow internal hosts on subnet to access an external HTTPS web service hosted at . The engineer configures an outbound ACL rule permitting TCP traffic from source subnet to destination host on destination port . However, users report that connection attempts to the external web service continuously time out. Which of the following best explains why the connection fails and identifies the necessary solution?
- The stateless ACL does not automatically permit return traffic; an inbound rule must be configured to permit returning TCP traffic from source port 443 to the internal subnet's ephemeral destination ports.Answer
- BHTTPS web services communicate using UDP port 443 rather than TCP; the outbound ACL entry must be modified to permit UDP transport protocol traffic.
- CThe router's implicit deny rule evaluated and dropped the outbound packets because explicit permit rules must be placed at the very end of an ACL sequence.
- DStandard HTTPS services listen on port 80 instead of port 443; the destination port in the outbound ACL rule must be changed from 80 to 443.
Answer
The stateless ACL drops return traffic because it does not maintain session state; an inbound ACL entry allowing return TCP traffic from source port 443 to ephemeral destination ports must be added.
Stateless Access Control Lists perform packet-by-packet inspection without keeping track of TCP connection states. While the outbound ACL permits initiating packets from internal hosts to destination port 443, the response traffic from the server back to the client's ephemeral ports is blocked by the router's default implicit deny rule on the return path. To resolve this, a stateless ACL requires an explicit inbound rule permitting TCP traffic originating from port 443 back to internal IP addresses, or the deployment of a stateful firewall that dynamically permits return traffic for established sessions.
Step-by-Step Solution
Key Concept
Stateless vs. Stateful Firewall Filtering