bird6.conf.j2 358 B

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