bird.conf.j2 274 B

123456789101112131415
  1. log syslog all;
  2. router id {{bird_router_id}};
  3. {% for template in bird_templates %}
  4. template {{template.header}} {
  5. {{template.content}}
  6. };
  7. {% endfor %}
  8. {% for protocol in bird_protocols %}
  9. protocol {{protocol.header}} {
  10. {{protocol.content}}
  11. };
  12. {% endfor %}