ASA firewalls: how does stateful filtering affect my access lists?
- by Nate
Ok, so assume that I have an ingress access list that looks like this:
access-list outside_in extended ip permit any X.Y.Z.1 eq 25
access-group outside_in in interface outside
And I want to do egress filtering. I want to allow inside machines to respond on port 80, and I want to allow ports over 1024. Given that the firewall is statefull, do I need to have the rule
access-list inside_in extended ip permit X.Y.Z.1 any eq 25
in my inside_in ACL, or can I get away with just
access-list inside_in extended ip permit any any gt 1024
access-group inside_in in interface inside
In other words, if I apply an egress access list, do I have to explicitly allow machines to respond to requests allowed by the ingress access list, or does the statefullness of the firewall handle that for me?
Thanks!