A network technician configures an extended Access Control List (ACL) on a stateless router interface to allow workstations on subnet to access an external web application at over HTTPS (TCP port 443). The technician adds the following outbound rule on the internal interface:
`permit tcp 10.40.10.0 0.0.0.255 host 203.0.113.80 eq 443`
After applying this configuration, client computers cannot successfully connect to the web application. Network captures reveal that outbound TCP SYN packets leave the router, but return traffic is never delivered to the clients. Which of the following ACL modifications will resolve this connectivity issue?
- Add an inbound ACL rule on the interface permitting TCP traffic from source port 443 to destination with the established keywordAnswer
- BChange the protocol specified in the outbound rule from TCP to UDP port 443 to enable connectionless session establishment
- CModify the outbound ACL rule to filter for destination TCP port 80 to allow secure SSL/TLS handshakes
- DReconfigure the filter as a Layer 2 MAC address access control list to automatically track TCP connection states
Answer
Add an inbound ACL rule on the interface permitting TCP traffic from source host port 443 to destination subnet using the established keyword.
Stateless access control lists evaluate packets individually without tracking connection session states. While outbound requests from internal hosts on are allowed by the outbound ACL rule, returning packets from are blocked by the implicit deny rule on the inbound interface. Adding an explicit inbound rule that matches TCP source port 443 and includes the `established` keyword permits return traffic (packets with ACK/RST flags set) back to internal clients.
Step-by-Step Solution
Key Concept
Stateless Filtering and Return Traffic ACL Configuration