During a network maintenance window, a network administrator configures an extended Access Control List (ACL) on a Layer 3 core switch to restrict access from the Engineering VLAN subnet () to the Data Center subnet (). Shortly after implementation, users report that while HTTP web access to an internal application server at is functional, secure HTTPS sessions to the same server fail to establish.
The administrator inspects the switch configuration using `show ip access-lists ENG_TO_DC` and retrieves the following output:
text
Extended IP access list ENG_TO_DC
10 permit tcp 10.120.4.0 0.0.3.255 host 10.120.32.50 eq 80
20 deny ip 10.120.4.0 0.0.3.255 10.120.32.0 0.0.0.255
30 permit tcp 10.120.4.0 0.0.3.255 host 10.120.32.50 eq 443
Which of the following identifies the root cause of the HTTPS connectivity failure?
- Rule 20 explicitly denies all IP traffic directed to the Data Center subnet before Rule 30 evaluating HTTPS traffic can be processed.Answer
- BThe wildcard mask 0.0.3.255 incorrectly matches host addresses outside the 10.120.4.0/22 Engineering subnet.
- CHTTPS protocol communications utilize UDP port 443, causing Rule 30 to mismatch incoming transport layer packets.
- DThe default gateway drops HTTPS packets because return traffic triggers the implicit deny rule at the end of the ACL.