Soru

Zorluk: OrtaAccess Control Lists (Standard and Extended IPv4 ACLs)

An administrator applies the following extended IPv4 access control list outbound on interface GigabitEthernet0/0/1 to permit HTTP traffic from the Sales VLAN (10.1.10.0/2410.1.10.0/24) to an internal Web Server (192.168.1.100192.168.1.100):

text
access-list 110 permit tcp 10.1.10.0 0.0.0.255 host 192.168.1.100 eq 80

After applying `ip access-group 110 out` on the interface, users in the Sales VLAN report that while HTTP access works, they can no longer send ICMP echo requests to the Web Server or access the corporate DNS server (192.168.1.2192.168.1.2) located on the same subnet. Which condition is causing this traffic interruption?

  1. The unwritten implicit deny clause at the end of the ACL drops all IP traffic that does not explicitly match the permit statement.Cevap
  2. B
    Extended access control lists cannot filter traffic by specific TCP destination port numbers such as port 80.
  3. C
    Standard network utility protocols like ICMP and DNS can only be filtered using numbered standard ACLs (1-99).
  4. D
    The IP address range 192.168.1.0/24 is reserved as RFC 1918 private space, which disables ICMP and DNS forwarding across router interfaces.

Cevap

The implicit deny statement at the end of the ACL drops all IP traffic that does not explicitly match the single permit entry.
Every Cisco IPv4 Access Control List includes an invisible implicit deny statement at the end (`deny ip any any`). Because ACL 110 only explicitly permits TCP traffic to port 80 on host 192.168.1.100, all other IP traffic—including ICMP ping requests and UDP DNS traffic to 192.168.1.2—is dropped by the implicit deny clause.

Adım Adım Çözüm

1
Analyze the applied ACL configuration
ACL 110 contains only one line permitting TCP traffic from 10.1.10.0/24 to host 192.168.1.100 on port 80.
Identify what traffic is explicitly allowed by the configured rules.
2
Evaluate non-matching traffic behavior
ICMP (ping) and UDP port 53 (DNS) traffic do not match the TCP port 80 rule.
Traffic that fails to match any explicit ACL rule falls through to the implicit deny at the end of the list (`deny ip any any`).
3
Determine the solution to restore required connectivity
Additional permit statements (such as permitting ICMP or DNS, or a trailing `permit ip any any` if general traffic is allowed) must be appended to the ACL.
Explicit permit entries are required to prevent unintended traffic drops caused by the implicit deny.

Anahtar Kavram

ACL Implicit Deny Any behavior and extended IPv4 statement evaluation order
Bu soruyu puanla