A network administrator configures an extended IPv4 access control list (ACL 102) on a Cisco IOS router to restrict traffic from the internal LAN subnet to an external server at IP address . The administrator enters the following CLI commands:
`access-list 102 permit tcp 172.16.10.0 0.0.0.255 host 192.168.50.10 eq 80`
`access-list 102 permit tcp 172.16.10.0 0.0.0.255 host 192.168.50.10 eq 443`
After applying ACL 102 inbound on interface GigabitEthernet0/0, users report that HTTP and HTTPS access to works properly, but all DNS resolution queries to an internal server at and internet browsing to other hosts are failing. Which statement correctly explains why all other traffic originating from the internal subnet is being blocked?
- The router processes traffic sequentially and drops all unlisted traffic due to the implicit deny clause located at the end of the access control list.Cevap
- BUnlisted traffic is dropped because an extended ACL requires an explicit 'deny ip any any' line to be configured before any non-matching packets can be evaluated.
- CThe wildcard mask 0.0.0.255 restricts access strictly to host 172.16.10.0, causing packets from all other hosts in the subnet to be dropped by the permit statements.
- DApplying an extended ACL inbound on a LAN interface automatically blocks local intra-subnet communications between hosts on the same physical switch.
Cevap
The router evaluates traffic against ACL 102 sequentially from top to bottom and drops all unlisted packets because of the invisible implicit deny clause ('deny ip any any') appended at the end of every IPv4 ACL.
In Cisco IOS networking, all standard and extended IPv4 Access Control Lists end with an invisible 'implicit deny' statement (conceptually `deny ip any any`). Packets entering an interface with an applied ACL are compared against statements top-down. Because ACL 102 only explicitly permits TCP ports 80 and 443 to host , all other traffic—including DNS (UDP port 53) and traffic destined for other IP addresses—reaches the end of the ACL and is dropped by the implicit deny rule.
Adım Adım Çözüm
Anahtar Kavram
Implicit Deny Clause in IPv4 ACLs
Tahmini Süre:1m 30s