Okay I know that ACLs have a IMPLIED deny any any at the end. That I do remember but how do you read these?
ip access-list extended PCWireless-Traffic
permit udp any any eq bootpc
permit udp any any eq bootps
permit ip 192.168.237.64 0.0.0.63 192.168.237.64 0.0.0.63
deny   ip 192.168.237.64 0.0.0.63 192.168.0.0 0.0.255.255
deny   ip 192.168.237.64 0.0.0.63 10.0.0.0 0.255.255.255
permit ip any any.........................(doesn't this forget all above and allow all and above is useless?)
ip access-list extended less-Traffic
permit udp any any eq bootpc
permit udp any any eq bootps
permit ip 192.168.237.0 0.0.0.63 192.168.237.0 0.0.0.63
deny   ip 192.168.237.0 0.0.0.63 192.168.0.0 0.0.255.255
deny   ip 192.168.237.0 0.0.0.63 10.0.0.0 0.255.255.255
permit ip any any  .........................(doesn't this forget all above and allow all and above is useless?)
deny   ip any any
ip access-list extended BOZO
deny   udp any host 192.168.194.52
deny   ip any host 192.168.194.52
permit ip any any.........................(doesn't this forget all above and allow all and above is useless?)
I get confused when I see permit, deny, and then permit any any and why would they say at end Deny any any even if there is an implied deny any any (maybe they do not know this?) but I am use to seeing deny first, and then permits not permit, deny, permit. can you set me straight on this...thanks been a while and the acls I am used to seeing are not like this...