summaryrefslogtreecommitdiff
path: root/data/templates/frr/rip_ripng.frr.j2
blob: 3732371b2f121bf2fb0b65f6a88170e11397bb84 (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
32
33
34
35
36
{% if default_information is vyos_defined %}
 default-information originate
{% endif %}
{% if default_metric is vyos_defined %}
 default-metric {{ default_metric }}
{% endif %}
{% if passive_interface is vyos_defined %}
{%   for interface in passive_interface %}
 passive-interface {{ interface }}
{%   endfor %}
{% endif %}
{% if network is vyos_defined %}
{%   for prefix in network %}
 network {{ prefix }}
{%   endfor %}
{% endif %}
{% if interface is vyos_defined %}
{%   for ifname in interface %}
 network {{ ifname }}
{%   endfor %}
{% endif %}
{% if route is vyos_defined %}
{%   for prefix in route %}
 route {{ prefix }}
{%   endfor %}
{% endif %}
{# timers have default values #}
 timers basic {{ timers['update'] }} {{ timers.timeout }} {{ timers.garbage_collection }}
{% if redistribute is vyos_defined %}
{%   for protocol, protocol_config in redistribute.items() %}
{%     if protocol is vyos_defined('ospfv3') %}
{%       set protocol = 'ospf6' %}
{%     endif %}
 redistribute {{ protocol }} {{ 'metric ' ~ protocol_config.metric if protocol_config.metric is vyos_defined }} {{ 'route-map ' ~ protocol_config.route_map if protocol_config.route_map is vyos_defined }}
{%   endfor %}
{% endif %}