blob: eeaee7199ee838649bd4d4c2fdb2a5141cfb4f69 (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
!
router rip
{% if default_information is defined and default_information.originate is defined %}
default-information originate
{% endif %}
{% if default_metric is defined and default_metric is not none %}
default-metric {{ default_metric }}
{% endif %}
{% if default_distance is defined and default_distance is not none %}
distance {{ default_distance }}
{% endif %}
{% if network_distance is defined and network_distance is not none %}
{% for network, network_config in network_distance.items() %}
{% if network_config.distance is defined and network_config.distance is not none %}
distance {{ network_config.distance }} {{ network }}
{% endif %}
{% endfor %}
{% endif %}
{% if neighbor is defined and neighbor is not none %}
{% for address in neighbor %}
neighbor {{ address }}
{% endfor %}
{% endif %}
{% if network is defined and network is not none %}
{% for prefix in network %}
network {{ prefix }}
{% endfor %}
{% endif %}
{% if interface is defined and interface is not none %}
{% for ifname in interface %}
network {{ ifname }}
{% endfor %}
{% endif %}
{% if passive_interface is defined and passive_interface is not none %}
{% for ifname in passive_interface %}
passive-interface {{ ifname }}
{% endfor %}
{% endif %}
{% if redistribute is defined and redistribute is not none %}
{% for protocol, protocol_config in redistribute.items() %}
redistribute {{ protocol }} {{ 'metric ' + protocol_config.metric if protocol_config.metric is defined }} {{ 'route-map ' + protocol_config.route_map if protocol_config.route_map is defined }}
{% endfor %}
{% endif %}
{% if route is defined and route is not none %}
{% for prefix in route %}
route {{ prefix }}
{% endfor %}
{% endif %}
{# timers have default values #}
timers basic {{ timers['update'] }} {{ timers.timeout }} {{ timers.garbage_collection }}
{% if distribute_list is defined and distribute_list is not none %}
{% if distribute_list.access_list is defined and distribute_list.access_list is not none %}
{% if distribute_list.access_list.in is defined and distribute_list.access_list.in is not none %}
distribute-list {{ distribute_list.access_list.in }} in
{% endif %}
{% if distribute_list.access_list.out is defined and distribute_list.access_list.out is not none %}
distribute-list {{ distribute_list.access_list.out }} out
{% endif %}
{% endif %}
{% if distribute_list.interface is defined and distribute_list.interface is not none %}
{% for interface, interface_config in distribute_list.interface.items() %}
{% if interface_config.access_list is defined and interface_config.access_list is not none %}
{% if interface_config.access_list.in is defined and interface_config.access_list.in is not none %}
distribute-list {{ interface_config.access_list.in }} in {{ interface }}
{% endif %}
{% if interface_config.access_list.out is defined and interface_config.access_list.out is not none %}
distribute-list {{ interface_config.access_list.out }} out {{ interface }}
{% endif %}
{% endif %}
{% if interface_config.prefix_list is defined and interface_config.prefix_list is not none %}
{% if interface_config.prefix_list.in is defined and interface_config.prefix_list.in is not none %}
distribute-list prefix {{ interface_config.prefix_list.in }} in {{ interface }}
{% endif %}
{% if interface_config.prefix_list.out is defined and interface_config.prefix_list.out is not none %}
distribute-list prefix {{ interface_config.prefix_list.out }} out {{ interface }}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% if distribute_list.prefix_list is defined and distribute_list.prefix_list is not none %}
{% if distribute_list.prefix_list.in is defined and distribute_list.prefix_list.in is not none %}
distribute-list prefix {{ distribute_list.prefix_list.in }} in
{% endif %}
{% if distribute_list.prefix_list.out is defined and distribute_list.prefix_list.out is not none %}
distribute-list prefix {{ distribute_list.prefix_list.out }} out
{% endif %}
{% endif %}
{% endif %}
!
|