A network administrator applies the following IPv4 extended named access control list (ACL) on a Cisco IOS router interface to regulate access from the Sales department () to the Finance server ():
text
ip access-list extended FILTER_SALES
permit tcp host 192.168.30.15 host 10.2.2.50 eq 443
deny ip 192.168.30.0 0.0.0.255 host 10.2.2.50
permit ip 192.168.30.0 0.0.0.255 any
Which two statements correctly describe the operational evaluation and deployment best practices for this ACL configuration? (Select two.)
- Applying FILTER_SALES inbound on the router interface closest to the 192.168.30.0/24 network minimizes unnecessary traffic processing across the router backplane.Answer
- Traffic sent from host 192.168.30.15 to a web server at 10.4.4.100 on TCP port 80 will be permitted by the third ACL rule.Answer
- CTelnet traffic from host 192.168.30.20 destined to the Finance server at 10.2.2.50 is permitted because the final entry allows all IP traffic from that subnet.
- DUnmatched packets originating from the 192.168.30.0/24 subnet will bypass the ACL and be forwarded normally because an explicit permit line exists.
Answer
The correct statements are that applying the extended ACL inbound on the interface closest to the source subnet optimizes network performance by dropping blocked packets early, and that HTTP traffic from 192.168.30.15 destined to 10.4.4.100 is allowed by the third ACL rule.
Applying Extended IPv4 ACLs inbound on the interface closest to the traffic source adheres to Cisco best practices by dropping unauthorized packets at the edge. Additionally, traffic from host 192.168.30.15 destined to 10.4.4.100 bypasses the first two specific rules (which strictly filter traffic destined to 10.2.2.50) and matches the third rule permitting general egress traffic from the 192.168.30.0/24 subnet.
Step-by-Step Solution
Key Concept
Extended ACL sequential top-down rule evaluation and optimal interface placement