A network administrator configures an extended IPv4 Access Control List (ACL) on a router interface filtering inbound traffic toward an internal database subnet (). The ACL is designed to meet three requirements:
1. Allow secure administration from a jump host at via SSH (TCP 22).
2. Allow application servers on subnet to access the database server at on TCP port 5432.
3. Block all other traffic originating from subnet .
The administrator enters the following ACL entries in sequential order:
- Entry 10: `permit tcp host 10.50.1.15 10.50.10.0 0.0.0.255 eq 22`
- Entry 20: `deny ip 10.50.2.0 0.0.0.255 10.50.10.0 0.0.0.255`
- Entry 30: `permit tcp 10.50.2.0 0.0.0.255 host 10.50.10.100 eq 5432`
During testing, application servers on subnet are unable to establish database connections to . Which of the following best explains why this configuration fails?
- The sequential top-down evaluation matches application server traffic against Entry 20 first, resulting in an explicit deny before Entry 30 is evaluated.Cevap
- BThe router drops the database traffic because extended ACLs automatically discard return packets unless an explicit return permit rule is added.
- CThe rule fails because PostgreSQL database services communicate exclusively over UDP port 5432, creating a protocol layer mismatch.
- DExtended ACLs function only at Layer 2 and cannot filter traffic using Layer 3 IP subnets or Layer 4 TCP port specifications.