Routing & BGP design Medium
BGP redistribute static without route-policy
Description. The BGP configuration redistributes static routes without a route-policy or route-map. Every static route in the table is eligible for injection into BGP.
Impact. Null-route blackholes, test routes, temporary diagnostics, and internal-only destinations are all advertised into BGP the moment someone adds them.
Recommendation. Attach a route-policy that matches only the prefixes intended for advertisement, and tag or community-mark them so the intent is auditable.
router bgp 64500 address-family ipv4 unicast- redistribute static+ redistribute static route-policy STATIC-TO-BGP !+ route-policy STATIC-TO-BGP+ if destination in ANNOUNCED-STATICS then+ set community (64500:100)+ pass+ endif+ end-policyIllustrative syntax. The report names the exact device and policy.