A network administrator is configuring an IPv4 extended named access control list (ACL) on a Cisco router interface to implement security controls for the host subnet . The ACL must satisfy the following traffic policies:
1. Allow ICMP echo requests from strictly to the default gateway at .
2. Allow HTTPS access from to the internal application server at .
3. Explicitly deny all other IPv4 traffic originating from destined to the internal server subnet .
4. Permit all remaining outbound traffic from to any other network destination.
Which two ACL entries must be placed in the access list to achieve this exact behavior without blocking general Internet access? (Select two.)
- permit tcp 10.50.1.0 0.0.0.255 host 192.168.20.45 eq 443Answer
- permit ip 10.50.1.0 0.0.0.255 anyAnswer
- Cdeny ip 10.50.1.0 0.0.0.255 any
- Dpermit ip 10.50.1.0 0.0.0.255 192.168.20.0 0.0.0.255
Answer
The correct options are 'permit tcp 10.50.1.0 0.0.0.255 host 192.168.20.45 eq 443' and 'permit ip 10.50.1.0 0.0.0.255 any'.
The correct configuration requires allowing TCP port 443 traffic to the specific host 192.168.20.45 first. Following the explicit block of all other IP traffic to 192.168.20.0/24, an explicit permit ip entry from the source network to 'any' destination is mandatory to prevent the default implicit deny clause from blocking general Internet and external traffic.
Step-by-Step Solution
Key Concept
ACL Sequential Evaluation and Implicit Deny Handling