VOSS Redistribute Static to BGP

I have a static route for destination network 10.10.10.0/24 which I wish to redistribute into BGP from within VRF red, here is an example of how that redistribution works with a route-map and prefix-list on VOSS.

router vrf red
ip prefix-list “v10” 10.10.10.0/24 id 1 ge 24 le 24
exit

router vrf red
route-map “v10” 1
permit
enable
match network “v10”
exit
exit

router vrf red
ip bgp redistribute static
ip bgp redistribute static enable
ip bgp redistribute static route-map “v10”

exit

ip bgp apply redistribute static vrf red

Note: BGP configuration not shown is assumed to be in place.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s