A security analyst is auditing an edge router configured with stateless Access Control Lists (ACLs) to filter traffic between an internal management subnet () and a cloud monitoring cluster (). The analyst notes that SNMP monitoring requests sent over UDP port 161 from the cloud cluster to internal endpoints pass successfully, but the response packets generated by the internal endpoints fail to reach the monitoring cluster.
Which TWO of the following statements correctly explain why this issue occurs and identify an appropriate resolution?
- Stateless ACLs evaluate packets individually without tracking connection state, requiring an explicit reverse ACL rule to permit return UDP traffic from source port 161 back to the monitoring cluster.Answer
- Migrating the filtering mechanism to a stateful firewall would resolve the issue because stateful inspection dynamically allows return traffic by referencing an entry created in its state table during outbound transmission.Answer
- CDeleting the implicit deny statement at the end of the stateless ACL automatically allows returning response packets to pass without adding specific permit statements.
- DImplementing Layer 2 MAC address filtering on the router interface enables automatic deep packet inspection to track UDP payload sessions across subnets.
Answer
The issue occurs because stateless ACLs inspect packets individually without maintaining connection tables, requiring an explicit reverse permit rule for returning traffic. Alternatively, replacing the stateless ACL with a stateful firewall resolves the issue by dynamically tracking sessions and automatically permitting return packets matching an active state table entry.
Stateless ACLs evaluate every packet independently without storing state history. Consequently, permitting outbound queries from a monitoring cluster does not automatically permit the response packets returning from internal hosts; an explicit reverse ACL entry is required to allow traffic flowing back. Alternatively, deploying a stateful firewall resolves this limitation because stateful devices monitor communication flows and dynamically permit return packets corresponding to active session entries.
Step-by-Step Solution
Key Concept
Stateless vs. Stateful Packet Filtering and ACL Directionality