static.conf 891 B

123456789101112131415161718192021222324252627282930313233
  1. # Gitoyen <contact@gitoyen.net>
  2. #
  3. # vim: set ts=4:sw=4
  4. #
  5. # Routes to announce
  6. #
  7. # Route to export through BGP. These are the routes of Gitoyen's prefixes allocated by RIPE
  8. protocol static static_export_routes {
  9. route 2001:910::/32 reject;
  10. import filter {
  11. bgp_community.add((20766,1));
  12. accept;
  13. };
  14. }
  15. # Default route announcement. It's only used by delivery which needs only the default route (see import/export)
  16. protocol static static_noexport_routes {
  17. route ::0/0 reject;
  18. }
  19. ## Blackhole routes announce.
  20. ## Likely unnecessary because blackholes routes are learnt directly from
  21. ## the kernel, ibgp and members
  22. #protocol static backhole_routes {
  23. # import filter {
  24. # bgp_community.add((20766,9999));
  25. # accept;
  26. # };
  27. # # Example here:
  28. # # route a:b:c:d:e:f:g:h/i blackhole;
  29. #}