J Anderia wrote:
> Ha! Yes, it is a convoluted way to show the list. I suppose I'm just a little too much
> 'include' happy. 
>
> On Fri, 01 Sep 2006 22:04:55 -0400, Barry Margolin <> wrote:
>
> >In article <>,
> > J Anderia <> wrote:
> >
> >> I did confirm that there was no other access-list 150 before I created it. A
> >> "show run |
> >> inc list 150" confirms this for me now also.
> >
> >That's a convoluted way to do "show access-list 150", isn't it?
> >
> >>
> >> Could this be a bug with IOS 12.3(6)a? I'm guessing I am supposesd to see
> >> filtered
> >> results and not everything going through, is this correct?
> >
> >Yes. It always worked for me, but it's been a few years and IOS
> >versions since I worked on Ciscos.
Firstly:-
access-list 150 permit tcp host 10.10.59.59 host 192.168.25.14
eq smtp
access-list 150 permit tcp host 192.168.25.14 host 10.10.59.59
established
In a /normal/ access list that was filtering interface traffic
the "established" keyword effectively stops TCP sessions
from starting by blocking the initial SYN packet which does not
have the ACK bit (or RST) bit set.
http://www.cisco.com/en/US/products/...080431049.html
"The established keyword is used only for the TCP protocol to
indicate an established connection. A match occurs if the TCP
datagram has the ACK or RST bits set, which indicate that the
packet belongs to an existing connection."
In a debug ACL it won't block the whole session from the
debug processing.
I am not clear what exactly the issue is since you have
not given an example of exactly what is getting through
that you don't think should be.
Please post an example packet.
I have never seen debug behave in this way.