An administrator needs to restrict access on a Cisco IOS router so that only traffic from host can reach the internal web server at via HTTPS (TCP port ). All other traffic originating from the network destined to any location must be allowed. Which set of IPv4 access control list statements correctly satisfies these requirements?
- ip access-list extended SECURE_ACCESS
permit tcp host 192.168.10.15 host 10.1.1.50 eq 443
deny tcp 192.168.10.0 0.0.0.255 host 10.1.1.50 eq 443
permit ip 192.168.10.0 0.0.0.255 anyCevap - Bip access-list extended SECURE_ACCESS
permit tcp host 192.168.10.15 host 10.1.1.50 eq 443
deny tcp 192.168.10.0 0.0.0.255 host 10.1.1.50 eq 443 - Cip access-list standard SECURE_ACCESS
permit host 192.168.10.15
permit 192.168.10.0 0.0.0.255 - Dip access-list extended SECURE_ACCESS
deny tcp 192.168.10.0 0.0.0.255 host 10.1.1.50 eq 443
permit tcp host 192.168.10.15 host 10.1.1.50 eq 443
permit ip any any
Cevap
The extended IPv4 ACL configuration that permits HTTPS traffic from host 192.168.10.15, denies HTTPS traffic from the rest of the 192.168.10.0/24 subnet to host 10.1.1.50, and permits all remaining IPv4 traffic from 192.168.10.0/24.
The correct configuration uses an extended named ACL to specify protocol (TCP) and port numbers (443). By placing the specific host permit line before the broader subnet deny line, the router allows host 192.168.10.15 to connect via HTTPS while blocking other hosts in 192.168.10.0/24 from reaching the web server on port 443. Finally, the trailing permit entry ensures other general IP traffic from the subnet is not dropped by the implicit deny rule.
Adım Adım Çözüm
Anahtar Kavram
Extended IPv4 Access Control Lists top-down processing and implicit deny behavior
Tahmini Süre:1m 30s