summaryrefslogtreecommitdiff
path: root/data/templates/frr/staticd.frr.tmpl
blob: c7138b12b782266d52530fdd6dc2a0a720b471be (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
50
51
52
53
54
55
56
57
58
{% from 'frr/static_routes_macro.j2' import static_routes %}
!
{% set ip_prefix = 'ip' %}
{% set ipv6_prefix = 'ipv6' %}
{% if vrf is vyos_defined %}
{#   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 vyos_defined %}
{%   for prefix, prefix_config in route.items() %}
{{ static_routes(ip_prefix, prefix, prefix_config) }}
{%-   endfor -%}
{% endif %}
{# IPv4 default routes from DHCP interfaces #}
{% if dhcp is vyos_defined %}
{%   for interface, interface_config in dhcp.items() %}
{%     set next_hop = interface | get_dhcp_router %}
{%     if next_hop is vyos_defined %}
{{ ip_prefix }} route 0.0.0.0/0 {{ next_hop }} {{ interface }} tag 210 {{ interface_config.distance }}
{%     endif %}
{%   endfor %}
{% endif %}
{# IPv6 routing #}
{% if route6 is vyos_defined %}
{%   for prefix, prefix_config in route6.items() %}
{{ static_routes(ipv6_prefix, prefix, prefix_config) }}
{%-   endfor -%}
{% endif %}
{% if vrf is vyos_defined %}
 exit-vrf
{% endif %}
!
{# Policy route tables #}
{% if table is vyos_defined %}
{%   for table_id, table_config in table.items() %}
{%     if table_config.route is vyos_defined %}
{%       for prefix, prefix_config in table_config.route.items() %}
{{ static_routes('ip', prefix, prefix_config, table_id) }}
{%-       endfor -%}
{%     endif %}
!
{%     if table_config.route6 is vyos_defined %}
{%       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 vyos_defined %}
ip protocol static route-map {{ route_map }}
!
{% endif %}