A network administrator configures the following IPv4 extended named Access Control List (ACL) on a Cisco IOS router to control access to an internal application server at IP address 192.168.50.10:
text
ip access-list extended APP_FILTER
10 permit tcp 10.10.20.0 0.0.0.255 host 192.168.50.10 eq 80
20 permit tcp 10.10.20.0 0.0.0.255 host 192.168.50.10 eq 443
30 deny ip 10.10.20.0 0.0.0.255 host 192.168.50.10
40 permit ip host 10.10.20.5 host 192.168.50.10
The ACL is applied outbound on GigabitEthernet0/1. An administrator attempts an SSH connection (TCP port 22) from management host 10.10.20.5 to the application server (192.168.50.10), while a user on host 10.10.20.100 attempts a web connection (TCP port 80) to the same server.
Which statement accurately describes how the router processes these two traffic flows?
- The SSH flow from 10.10.20.5 is denied by sequence 30, while the HTTP flow from 10.10.20.100 is permitted by sequence 10.Cevap
- BThe SSH flow from 10.10.20.5 is permitted by sequence 40, while the HTTP flow from 10.10.20.100 is permitted by sequence 10.
- CThe SSH flow from 10.10.20.5 is denied by the implicit deny clause, while the HTTP flow from 10.10.20.100 is denied by sequence 30.
- DBoth the SSH flow from 10.10.20.5 and the HTTP flow from 10.10.20.100 are denied by sequence 30.