A network administrator applies the following IPv4 extended Access Control List (ACL) inbound on interface GigabitEthernet0/0 to control outbound internet access for internal clients on the network:
text
access-list 102 permit udp 172.16.40.0 0.0.0.255 any eq 53
access-list 102 permit tcp 172.16.40.0 0.0.0.255 eq 443 any
Users report that domain name resolution functions properly, but secure web browsing to external websites fails. Which of the following configuration errors in the ACL is causing the HTTPS traffic to be dropped?
- The ACL rule specifies port 443 as the source port criterion rather than the destination port criterion.Answer
- BThe ACL lacks an explicit permit statement for return web traffic from the internet, causing responses to be dropped by the implicit deny.
- CHTTPS transport traffic uses UDP port 443 instead of TCP port 443.
- DStandard extended access control lists operating at Layer 3 cannot filter Layer 4 transport protocol port numbers.
Answer
The ACL rule specifies port 443 as the source port criterion rather than the destination port criterion.
The correct option correctly identifies that the `eq 443` keyword was placed after the source network specification (`172.16.40.0 0.0.0.255`) rather than after the destination specification (`any`). Client computers initiate connections using dynamic high-numbered ephemeral source ports and target destination port 443 on web servers. Because the ACL checks for source port 443, outgoing client HTTPS requests fail to match the rule and fall through to the implicit deny.
Step-by-Step Solution
Key Concept
Firewalls and Access Control Lists (ACLs)
Estimated Time:1m 30s