bird.conf.j2 355 B

12345678910111213141516171819
  1. #
  2. # This file is managed by ansible. Do not edit by hand!
  3. #
  4. log syslog all;
  5. router id {{bird_router_id}};
  6. {% for template in bird_templates %}
  7. template {{template.header}} {
  8. {{template.content|indent(2,false)}}
  9. };
  10. {% endfor %}
  11. {% for protocol in bird_protocols %}
  12. protocol {{protocol.header}} {
  13. {{protocol.content|indent(2,false)}}
  14. };
  15. {% endfor %}