bird.conf.j2 460 B

12345678910111213141516171819202122232425262728293031
  1. #
  2. # This file is managed by ansible. Do not edit by hand!
  3. #
  4. log syslog all;
  5. router id {{routerid}};
  6. include "/etc/bird.d/*.cfg"
  7. protocol direct {
  8. interface "*";
  9. };
  10. protocol kernel {
  11. device routes;
  12. import all;
  13. export all;
  14. kernel table 42;
  15. };
  16. protocol device {
  17. scan time 8;
  18. };
  19. template bgp ibgp {
  20. local as {{as}};
  21. import all;
  22. export all;
  23. next hop self;
  24. multihop 64;
  25. };