A network security administrator must configure an IPv4 Access Control List (ACL) on a router to enforce network security policies for the internal subnet . Place the following ACL rules in the correct top-to-bottom sequence so that host-specific restrictions are properly enforced without being shadowed by broader subnet rules.
- 1deny tcp host 172.16.10.5 host 192.168.1.50 eq 443
- 2permit tcp 172.16.10.0 0.0.0.255 host 192.168.1.50 eq 443
- 3permit icmp 172.16.10.0 0.0.0.255 192.168.1.0 0.0.0.255 echo
- 4deny ip any any
Answer
The correct top-to-bottom sequence is: 1) deny tcp host 172.16.10.5 host 192.168.1.50 eq 443, 2) permit tcp 172.16.10.0 0.0.0.255 host 192.168.1.50 eq 443, 3) permit icmp 172.16.10.0 0.0.0.255 192.168.1.0 0.0.0.255 echo, 4) deny ip any any.
Access Control Lists operate sequentially using first-match logic. Specific rules (such as blocking host 172.16.10.5) must be placed at the top of the list. Placing a general subnet permit rule above a specific host deny rule causes rule shadowing, where traffic matches the subnet permit first and the host block is never evaluated. Finally, general protocol permissions follow, and the catch-all deny rule resides at the very end.
Step-by-Step Solution
Key Concept
ACL First-Match Processing and Rule Shadowing
Estimated Time:1m 30s