static.conf 1023 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. # Globenet's routes announce
  20. protocol static static_globenet_routes {
  21. route 2001:0910:1400::/40 via 2001:910:0:117::229;
  22. }
  23. ## Blackhole routes announce.
  24. ## Likely unnecessary because blackholes routes are learnt directly from
  25. ## the kernel, ibgp and members
  26. #protocol static backhole_routes {
  27. # import filter {
  28. # bgp_community.add((20766,9999));
  29. # accept;
  30. # };
  31. # # Example here:
  32. # # route a:b:c:d:e:f:g:h/i blackhole;
  33. #}