A network administrator is troubleshooting connectivity between internal network monitoring tools on subnet and an application server at . The administrator configured an inbound extended Access Control List (ACL) on the router interface facing the monitoring subnet with only the following active rules:
- `permit tcp 10.80.4.0 0.0.0.255 host 10.80.12.50 eq 80`
- `permit tcp 10.80.4.0 0.0.0.255 host 10.80.12.50 eq 443`
While HTTP and HTTPS traffic reach the server successfully, ICMP echo requests (ping) sent from the monitoring tools to fail. Which of the following best explains why the ICMP traffic is being dropped?
- The ACL ends with an implicit deny rule that automatically blocks all traffic not explicitly permitted by a prior rule.Answer
- BICMP traffic operates on UDP port 80, which conflicts with the TCP protocol specified in the first permit rule.
- CICMP operates at Layer 7 of the OSI model and requires an Application-Layer Gateway rule to pass through the router interface.
- DThe router requires Port Address Translation (PAT) overload configuration to translate ICMP echo request identifiers across subnet boundaries.
Answer
The ACL ends with an implicit deny rule that automatically blocks all traffic not explicitly permitted by a prior rule.
Every network Access Control List (ACL) features an default, invisible 'implicit deny all' rule at the very end of the rule list. When ICMP traffic arrives at the router interface, it is evaluated against the explicit entries. Because the only configured entries permit TCP traffic destined for ports 80 and 443, ICMP traffic fails to match any permit rule and is discarded by the implicit deny statement.
Step-by-Step Solution
Key Concept
ACL Implicit Deny Rule