Route filtering with prefix-list
I can't quite get my head around what additional functionality -apart from speed, apparently- filtering with prefix-lists adds when compared to filtering with an ACL. Perhaps someone could give me an example of where an ACL wont work to make things clear.
Thank you
Thank you
Comments
Now I'm even more confused. Are you asking how I would filter addresses using a subnet mask greater than a /24 in the 10.1.0.0 - 10.1.255.255 range?
just like networker said, imagine having the enormous range of 10.1.0.0/16 and only wanting to deny the prefixes that were only in the range of 10.1.0.0/16 but had /24 masks.
this means every acl would have to be like this
deny 10.1.0.0 0.0.0.255
deny 10.1.1.0 0.0.0.255
deny 10.1.2.0 0.0.0.255
"
"
"
deny 10.1.255.0 0.0.0.255
you cant really go like this for an acl shortcut
deny 10.1.0.0 0.0.255.255 because this is implying you want to deny everything that is in the 10.1.0.0/16 range regardless of the mask.
with the prefix list you can skip all that and just say
deny 10.1.0.0/16 ge 24
which means I want to deny prefixes that are in the range of 10.1.0.0/16 ( 10.1.255.255 ) BUT only if these prefixes have a mask of ge (greater than or equal to ) 24
CCNP ROUTE - passed 20/3/12
CCNP SWITCH - passed 25/10/12
CCNP TSHOOT - passed 11/12/12
Aha I get it now. Thank you!