Question about using "ip prefix-list permit .... le "
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2006 08:23 AM - edited 03-03-2019 01:31 AM
I'm redistributing routes by using route map and prefix list. Would like to summary routes and use "permit ... le " in the prefix list when possible to make the prefix list shorter. For example here are the routes:
1.1.1.1/32
1.1.1.2/32
1.1.1.3/32
1.1.1.16/30
1.1.1.24/28
Should I use "ip prefix-list ... permit 1.1.1.0/26" or
"permit 1.1.1.0/26 le 30" or
"permit 1.1.1.0/26 le 32" or
"permit 1.1.1.0/30" and "permit 1.1.1.16/30" and "permit 1.1.1.24/28" individually?
I may not phrase the question clearly, but the objcetive is to make the prefix list as short as possible.
Thanks in advance.
Gary
- Labels:
-
Other Networking
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2006 02:00 PM
Hi Gary,
Are these the only routes that you would like to match, or was that just an example.
If you need to match these 5 routes and nothing else, then you need to use the following:l
ip prefix-list list1 permit 1.1.1.1/32
ip prefix-list list1 permit 1.1.1.2/31
ip prefix-list list1 permit 1.1.1.16/30
ip prefix-list list1 permit 1.1.1.24/28
You cannot make the prefix-list shorted than that, I'm afraid.. at least, not for these 5 prefixes.
Hope that helps - pls rate the post if it does.
Paresh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2006 01:01 AM
Hello,
the shortest prefix-list entry matching all your routes (and some others too):
permit 1.1.1.0/24 ge 28
Hope this helps! Please rate all posts.
Regards, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2006 08:36 AM
I was using them only as an example, but I got your ideas. Thanks for the help.
Gary
