A network administrator needs to restrict administrative access to a managed switch located at IP address . Only the administrator's workstation at IP address must be allowed to establish Secure Shell (SSH) management sessions with the switch. All other SSH attempts to the switch must be blocked, while all other non-SSH IP traffic across the subnet must continue to traverse the interface uninhibited.
Which set of extended IPv4 Access Control List (ACL) statements correctly fulfills this security requirement?
- Astatement 1: permit udp host 10.20.30.15 host 10.20.30.2 eq 22
statement 2: deny udp any host 10.20.30.2 eq 22
statement 3: permit ip any any - statement 1: permit tcp host 10.20.30.15 host 10.20.30.2 eq 22
statement 2: deny tcp any host 10.20.30.2 eq 22
statement 3: permit ip any anyCevap - Cstatement 1: permit tcp host 10.20.30.15 host 10.20.30.2 eq 23
statement 2: deny tcp any host 10.20.30.2 eq 23
statement 3: permit ip any any - Dstatement 1: permit tcp host 10.20.30.15 host 10.20.30.2 eq 22
statement 2: deny tcp any host 10.20.30.2 eq 22
Cevap
The correct configuration permits TCP port 22 traffic from host 10.20.30.15 to host 10.20.30.2, denies TCP port 22 traffic from any host to host 10.20.30.2, and permits all remaining IP traffic using 'permit ip any any'.
The correct configuration properly identifies SSH as using TCP on port 22, creates an explicit entry granting access to the administrator's IP address (), denies SSH access to all other hosts, and concludes with 'permit ip any any' to allow all non-SSH traffic across the interface without triggering the default implicit deny.
Adım Adım Çözüm
Anahtar Kavram
Extended Access Control List rule ordering, layer 4 port/protocol specification, and implicit deny management.
Tahmini Süre:1m 30s