summaryrefslogtreecommitdiff
path: root/data/templates/frr/static.frr.tmpl
blob: db59a44c2915ddb45d32343c673622d50c7d457a (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
37
38
39
40
41
42
43
44
45
46
47
48
49
{% from 'frr/static_routes_macro.j2' import static_routes %}
!
{% set ip_prefix = 'ip' %}
{% set ipv6_prefix = 'ipv6' %}
{% if vrf is defined and vrf is not none %}
{#   We need to add an additional whitespace in front of the prefix #}
{#   when VRFs are in use, thus we use a variable for prefix handling #}
{%   set ip_prefix = ' ip' %}
{%   set ipv6_prefix = ' ipv6' %}
vrf {{ vrf }}
{% endif %}
{# IPv4 routing #}
{% if route is defined and route is not none %}
{%   for prefix, prefix_config in route.items() %}
{{ static_routes(ip_prefix, prefix, prefix_config) }}
{%-   endfor -%}
{% endif %}
{# IPv6 routing #}
{% if route6 is defined and route6 is not none %}
{%   for prefix, prefix_config in route6.items() %}
{{ static_routes(ipv6_prefix, prefix, prefix_config) }}
{%-   endfor -%}
{% endif %}
{% if vrf is defined and vrf is not none %}
 exit-vrf
{% endif %}
!
{# Policy route tables #}
{% if table is defined and table is not none %}
{%   for table_id, table_config in table.items() %}
{%     if table_config.route is defined and table_config.route is not none %}
{%       for prefix, prefix_config in table_config.route.items() %}
{{ static_routes('ip', prefix, prefix_config, table_id) }}
{%-       endfor -%}
{%     endif %}
!
{%     if table_config.route6 is defined and table_config.route6 is not none %}
{%       for prefix, prefix_config in table_config.route6.items() %}
{{ static_routes('ipv6', prefix, prefix_config, table_id) }}
{%-       endfor -%}
{%     endif %}
!
{%   endfor %}
{% endif %}
!
{% if route_map is defined and route_map is not none %}
ip protocol static route-map {{ route_map }}
!
{% endif %}