A network administrator applies the following IPv4 extended named access control list (ACL) inbound on the GigabitEthernet0/1 interface of a Cisco IOS router to restrict access to a server network:
text
ip access-list extended SERVER_POLICY
10 permit tcp 172.16.5.0 0.0.0.255 host 172.20.10.25 eq 22
20 permit tcp 172.16.5.128 0.0.0.127 172.20.10.0 0.0.0.255 eq 443
30 deny tcp host 172.16.5.150 172.20.10.0 0.0.0.255
40 permit ip 172.16.5.0 0.0.0.255 172.20.10.0 0.0.0.255
The router receives two distinct packets on interface GigabitEthernet0/1:
- Packet 1: Source IP 172.16.5.150, Destination IP 172.20.10.25, Protocol UDP (DNS, destination port 53)
- Packet 2: Source IP 172.16.5.150, Destination IP 172.20.10.30, Protocol TCP (HTTP, destination port 80)
Which statement accurately describes how the router processes these two packets?
- Packet 1 is permitted by sequence line 40 because protocol IP encompasses UDP; Packet 2 is denied by sequence line 30 during sequential top-down evaluation.Cevap
- BPacket 1 is dropped by the implicit deny clause because no preceding entry explicitly specifies UDP; Packet 2 is permitted by sequence line 40.
- CPacket 1 is permitted by sequence line 40; Packet 2 bypasses sequence line 30 and is permitted by sequence line 40 because line 30 lacks a port operator.
- DBoth Packet 1 and Packet 2 are dropped by the implicit deny clause because host 172.16.5.150 is restricted from reaching destination 172.20.10.0/24 across all protocols.