ibgp_nodes.conf.j2 328 B

123456789101112131415
  1. {% for item in dnet.igp %}
  2. protocol bgp ibgp_{{ item.name }} from ibgp_node {
  3. neighbor {{ item.ip }} as OWNAS;
  4. ipv4 {
  5. import where dn42_ibgp_import(5,25,34,3);
  6. export where dn42_ibgp_export(5,25,34,3);
  7. };
  8. ipv6 {
  9. import where dn42_ibgp_import(5,25,34,3);
  10. export where dn42_ibgp_export(5,25,34,3);
  11. };
  12. }
  13. {% endfor %}