A network security administrator must construct an extended IPv4 Access Control List (ACL) on an ingress router interface serving the internal subnet . The ACL must enforce five security requirements using first-match evaluation logic without rule shadowing:
1. Quarantine host by blocking all of its outbound traffic.
2. Allow database administrative hosts in the subnet to access a central database server at on TCP port .
3. Deny all other hosts in access to any server in the network.
4. Permit all remaining hosts in to access external web servers on TCP port .
5. Explicitly deny and log all unapproved IPv4 traffic originating from .
Arrange the given ACL statements in the correct top-to-bottom sequential order (from index to ) to fulfill these security requirements accurately.
- 1`access-list 105 deny ip host 10.50.10.45 any`
- 2`access-list 105 permit tcp 10.50.10.0 0.0.0.63 host 192.168.100.50 eq 3306`
- 3`access-list 105 deny ip 10.50.10.0 0.0.0.255 192.168.100.0 0.0.0.255`
- 4`access-list 105 permit tcp 10.50.10.0 0.0.0.255 any eq 443`
- 5`access-list 105 deny ip 10.50.10.0 0.0.0.255 any log`