summaryrefslogtreecommitdiff
path: root/data/templates/frr/ripngd.frr.j2
blob: e857e94816847c523a6e030a9709edbd042323eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{% from 'frr/ipv6_distribute_list_macro.j2' import render_ipv6_distribute_list %}
{# Interface specific configuration #}
{% if interface is vyos_defined %}
{%     for iface, iface_config in interface.items() %}
interface {{ iface }}
{%         if iface_config.split_horizon.disable is vyos_defined %}
 no ipv6 rip split-horizon
{%         endif %}
{%         if iface_config.split_horizon.poison_reverse is vyos_defined %}
 ipv6 rip split-horizon poisoned-reverse
{%         endif %}
exit
{%     endfor %}
{% endif %}
!
router ripng
{% if aggregate_address is vyos_defined %}
{%     for prefix in aggregate_address %}
 aggregate-address {{ prefix }}
{%     endfor %}
{% endif %}
{% if distribute_list is vyos_defined %}
{{ render_ipv6_distribute_list(distribute_list) }}
{% endif %}
{% include 'frr/rip_ripng.frr.j2' %}
exit
!
{% if route_map is vyos_defined %}
ipv6 protocol ripng route-map {{ route_map }}
{% endif %}
!