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.