A network security administrator applies a new stateless extended IPv4 Access Control List (ACL) to interface in the inbound direction on a perimeter router. The interface serves an internal management VLAN on subnet . The objective of the configuration is to permit local network devices to send SNMP trap notifications to an off-site monitoring server at IP address listening on UDP port 162.
The technician configures a single rule entry:
`access-list 102 permit udp 192.168.4.0 0.0.0.255 host 198.51.100.45 eq 162`
Immediately after applying the ACL with `ip access-group 102 in`, users on the subnet report a complete loss of web access (TCP ports 80/443) and DNS name resolution (UDP port 53) to all external destinations.
Which of the following identifies the root cause of this network outage?
- The ACL lacks explicit permit statements for HTTP, HTTPS, and DNS traffic, causing all unlisted traffic to be blocked by the unwritten implicit deny rule at the end of the access list.Cevap
- BSNMP traps operate over TCP rather than UDP, causing the router to misclassify web packets and reject the connection attempts.
- CExtended ACLs operate exclusively at Layer 2, so evaluating Layer 4 port numbers causes the router interface to drop all Layer 3 IP packets.
- DThe router requires Port Address Translation (PAT) overloading to be enabled directly inside the ACL statement to map internal hosts to port 162.