A network administrator configures an inbound IPv4 extended Access Control List (ACL) on interface GigabitEthernet0/0 to control traffic originating from the engineering subnet . The objective is to allow HTTP and HTTPS access to an internal web server at , while continuing to allow normal network traffic to all other destinations.
The administrator applies the following configuration:
text
ip access-list extended FILTER_ENGINEERING
permit tcp 10.50.10.0 0.0.0.255 host 172.16.1.100 eq 80
permit tcp 10.50.10.0 0.0.0.255 host 172.16.1.100 eq 443
After applying this ACL to GigabitEthernet0/0 inbound, users in the subnet report that while they can access the web server, all access to internet services, DNS, and local file servers is completely blocked. What is the primary cause of this issue?
- The ACL does not include a statement to permit remaining traffic, causing all other traffic from the subnet to be dropped by the implicit deny clause at the end of the ACL.Answer
- BThe wildcard mask 0.0.0.255 incorrectly matches only a single host address rather than the entire 10.50.10.0/24 subnet.
- CExtended ACLs must be placed outbound on the interface closest to the destination rather than inbound on the source interface.
- DThe ACL statements incorrectly use the host keyword before the destination IP address instead of specifying a destination wildcard mask.