Hi I an new to RPL and am experiencing a problem with redistribution of OSPF into BGP.
What I am trying to do is filter on a tagged route, change the community and filter the routes via a prefix-set. The tagging and community set is working, but the prefix-set filter is not.
router bgp 64515
address-family ipv4 unicast
redistribute ospf 1 route-policy prefix-to-announce-out
route-policy prefix-to-announce-out
if tag eq 123 then
set community (111:123)
endif
if destination in prefix-to-announce then
pass
endif
end-policy
Please advise