########################################################################## # # Bird1 Route Collector Client Example (IPv4) # # Based on the bird1 examples in the DN42 wiki # https://wiki.dn42.us/howto/Bird # ########################################################################## protocol bgp ROUTE_COLLECTOR4 { local as ***YOUR_ASN***; neighbor 172.20.129.165 as 4242422602; # enable multihop as the collector is not locally connected multihop; # export all available paths to the collector add paths tx; # import/export filters import none; export filter { # export all valid routes if ( is_valid_network() && source ~ [ RTS_STATIC, RTS_BGP ] ) then { accept; } reject; }; } ########################################################################## # end of file