Unsupress maps in Cisco can really be a very helpful tool in situations where you might be summarizing a bunch of /24s to maybe a /20, but you need to leak out one of the /24s without summarization, and still advertise the larger summary route.
By default, once you use summarize all networks that fall under your summary route do not advertise any more. In my situation I was testing ECMP and needed to advertise one /24 to each of my MPLS neighbors, so my hub router could get back on either path. I couldn’t test this with the full /24 due to outage concerns so we had to do this for a /24 that was not used that often. I am not going to show the layout of the Dual MPLS , but just one.
Below shows the topology

Great, now for config on the Cisco Routers.
Steps:
- Created Prefix list of subnets I need to be unsupressed.
- Create a new route-map to match those subnets.
- Add the BGP statement referencing my neighbor with the “unsuppress-map” keyword.
- clear routes soft, to force a refresh.
My Prefix list name will be UMAP and my route-map will be named UMAP-MAP
So lets take a look at our advertised routes to my neighbor 10.0.5.22 before making the changes.

Notice that just the /20 is being advertised. Now check out the config below, and lets apply.
config t
ip prefix-list UMAP seq 5 permit 10.32.39.0/24
route-map UMAP-MAP permit 10
match ip address prefix-list UMAP
router bgp 64551
neighbor 10.0.5.22 unsuppress-map UMAP-MAP
Then clear update BGP
clear ip bgp * soft
So that’s it for the config. Lets look at the advertised routes now.

Great! we are advertising our /24 and everything is now working perfectly. Unsuppress maps to the rescue!
Like this:
Like Loading...
Recent Comments