internet-----> Gi/0/0
routerA(config)#access-list 100 deny ip 0.0.0.0 0.255.255.255 any
routerA(config)#access-list 101 deny ip 10.16.1.0 0.0.0.255 any
routerA(config)#access-list 102 permit ip 10.16.1.0 0.0.0.255 any
routerA(config)#interface Gi/0/0
routerA(config-if)#ip access-gorup 100 in
routerA(config-if)#ip access-gorup 101 in
routerA(config-if)#ip access-gorup 102 in
this were I am lost ( why all traffic destined for the 10.16.1.0 /24 network will be allowed)
why rule 101 (deny) is been ignored. the packet (rules) is read from top to bottom! and it read rule 101 is for deny so it drops, before I can read 102?