A network security team is deploying an extended stateless IPv4 Access Control List (ACL) on an egress router interface filtering traffic between an internal database server () and external application servers (). The application servers initiate database connections to TCP port (PostgreSQL), and the database server is configured to send automated diagnostic alerts to an external syslog server at listening on UDP port . Which TWO configuration entries or operational requirements must be implemented on the stateless egress ACL to guarantee bidirectional application communication and outbound alerting? (Select TWO.)
- Permit outbound TCP traffic from host 10.50.10.25 source port 5432 to 172.16.100.0/24 with TCP control flags set to permit return query responses.Answer
- Permit outbound UDP traffic from host 10.50.10.25 to destination host 172.16.100.50 on destination port 514.Answer
- COmit an explicit outbound rule for UDP syslog traffic, relying on the default ACL implicit permit statement at the end of the access list.
- DConfigure the outbound syslog permit entry to match TCP destination port 514 to allow the stateless router to establish connection state.
Answer
To allow communication through a stateless router ACL, explicit outbound rules must be created: one allowing return TCP responses from source port 5432 with TCP control flags (ACK/established) set, and one allowing outbound UDP syslog traffic from the database server to destination IP 172.16.100.50 on destination UDP port 514.
Because stateless ACLs do not automatically track session state, return traffic from TCP port 5432 must be explicitly permitted using TCP flag matching (ACK/established). Additionally, UDP syslog traffic originating from the server targeting destination port 514 requires an explicit permit statement due to the implicit deny at the end of the ACL.
Step-by-Step Solution
Key Concept
Stateless ACL rules require bidirectional explicit definitions, using TCP control flag matching for TCP return flows and specific UDP port permitting for connectionless logging.