You can apply an access list to an interface for incoming or outgoing traffic.
For example.
access-list inside_access_in permit ip host 10.10.10.1 any
access-list inside_access_out permit ip any host 10.10.10.1
*Apply the access lists to the inside interface
access-group inside_access_in in interface inside
access-group inside_access_out out interface inside
Now trafic coming INTO the inside interface from host 10.10.10.1 to any host will hit the inside_access_in list.
Traffic going OUT of the inside interface from any to host 10.10.10.1 will hit the inside_access_out list.
Think of IN as coming towards the center of the firewall and OUT as going from the center of the firewall.
Main Topics
Browse All Topics





by: MikeHolcombPosted on 2009-11-05 at 10:06:35ID: 25752161
You'll want to examine not only your ACL's, but your interfaces and how the ACL's are applied. Is the 'inside_access_in' ACL applied to an interface? Is it applied on an inbound or outbound basis?
It could help in answering your question if you could post the significant portions of your config.
Hope this helps...
Mike