A network administrator is troubleshooting an issue where servers on VLAN 40 (subnet 172.20.40.0/24) can successfully synchronize time with an internal NTP server (192.168.1.50), but fail to retrieve software updates from an HTTP repository located on the same server (192.168.1.50:80).
Inspection of the router's inbound ACL on the VLAN 40 interface reveals the following configuration:
ip access-list extended VLAN40_IN
10 permit tcp 172.20.40.0 0.0.0.255 host 192.168.1.50 eq 443
20 permit udp 172.20.40.0 0.0.0.255 host 192.168.1.50 eq 123
Which of the following TWO statements correctly identify the root cause of the failure and the necessary corrective action? (Select TWO.)
- HTTP traffic on TCP port 80 is denied because it matches the unwritten implicit deny rule at the end of the access control list.Cevap
- A new entry explicitly permitting TCP port 80 traffic from the 172.20.40.0/24 network to 192.168.1.50 must be appended to the access control list.Cevap
- CThe default gateway on the VLAN 40 hosts must be changed to 192.168.1.50 to bypass Layer 3 access list filtering.
- DRule 10 permits HTTP requests because HTTPS on port 443 automatically handles unencrypted TCP port 80 traffic.
Cevap
HTTP traffic on TCP port 80 is denied by the implicit deny rule at the end of the access control list, and adding an explicit rule permitting TCP port 80 traffic from 172.20.40.0/24 to 192.168.1.50 resolves the issue.
Access Control Lists process traffic sequentially and evaluate unmatched traffic against an unwritten implicit deny all statement. Because the ACL only permits TCP port 443 and UDP port 123, HTTP traffic destined for TCP port 80 is implicitly blocked. To permit HTTP updates, an administrator must add an explicit permit rule for TCP port 80.
Adım Adım Çözüm
Anahtar Kavram
Troubleshooting Access Control Lists (ACLs) and Implicit Deny Behavior
Tahmini Süre:1m 30s