123456789101112131415 |
- {% for item in dnet.igp %}
- protocol bgp ibgp_{{ item.name }} from ibgp_node {
- neighbor {{ item.ip }} as OWNAS;
- ipv4 {
- import where dn42_ibgp_import(5,25,34,3);
- export where dn42_ibgp_export(5,25,34,3);
- };
- ipv6 {
- import where dn42_ibgp_import(5,25,34,3);
- export where dn42_ibgp_export(5,25,34,3);
- };
- }
- {% endfor %}
|