A network security administrator is configuring a top-to-bottom IPv4 extended Access Control List (ACL) on a gateway router interface. The ACL must enforce the following security policy objectives:
1. Allow administrative host SSH access ( port 22) to management server .
2. Block all other traffic from internal subnet destined to management server .
3. Allow all hosts on subnet HTTP access ( port 80) to any destination.
4. Explicitly block all remaining IP traffic.
Arrange the ACL rules in the correct top-to-bottom processing order to satisfy these security requirements without shadowing any rules.
- 1access-list 105 permit tcp host 192.168.1.10 host 10.0.0.5 eq 22
- 2access-list 105 deny ip 192.168.1.0 0.0.0.255 host 10.0.0.5
- 3access-list 105 permit tcp 192.168.1.0 0.0.0.255 any eq 80
- 4access-list 105 deny ip any any
Answer
The correct top-to-bottom sequence is: 1) access-list 105 permit tcp host 192.168.1.10 host 10.0.0.5 eq 22, 2) access-list 105 deny ip 192.168.1.0 0.0.0.255 host 10.0.0.5, 3) access-list 105 permit tcp 192.168.1.0 0.0.0.255 any eq 80, and 4) access-list 105 deny ip any any.
Router Access Control Lists execute rules sequentially from top to bottom and stop processing upon the first match. To meet security requirements without rule shadowing, specific rules must be placed above general rules. Host 192.168.1.10's SSH access must be permitted first. Next, all other traffic to host 10.0.0.5 must be denied. Third, general HTTP access for the subnet is allowed. Finally, the catch-all deny rule drops any remaining traffic.
Step-by-Step Solution
Key Concept
ACL Sequential First-Match Evaluation and Rule Shadowing Prevention
Estimated Time:1m 30s