summaryrefslogtreecommitdiff
path: root/data/templates/frr/rip.frr.tmpl
blob: 83df4e2034007a3a40470fb2d85836cb0e77ec76 (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
!
{% if rip_conf %}
router rip
{% if old_default_distance %}
no distance {{old_default_distance}}
{% endif %}
{% if default_distance %}
distance {{default_distance}}
{% endif %}
{% if old_default_originate %}
no default-information originate
{% endif %}
{% if default_originate %}
default-information originate
{% endif %}
{% if old_rip.default_metric %}
no default-metric {{old_rip.default_metric}}
{% endif %}
{% if rip.default_metric %}
default-metric {{rip.default_metric}}
{% endif %}
{% for protocol in old_rip.redist %}
{% if old_rip.redist[protocol]['metric'] and old_rip.redist[protocol]['route_map'] %}
no redistribute {{protocol}} metric {{rip.redist[protocol]['metric']}} route-map {{rip.redist[protocol]['route_map']}}
{% elif old_rip.redist[protocol]['metric'] %}
no redistribute {{protocol}} metric {{old_rip.redist[protocol]['metric']}}
{% elif old_rip.redist[protocol]['route_map'] %}
no redistribute {{protocol}} route-map {{old_rip.redist[protocol]['route_map']}}
{% else %}
no redistribute {{protocol}}
{% endif %}
{% endfor %}
{% for protocol in rip.redist %}
{% if rip.redist[protocol]['metric'] and rip.redist[protocol]['route_map'] %}
redistribute {{protocol}} metric {{rip.redist[protocol]['metric']}} route-map {{rip.redist[protocol]['route_map']}}
{% elif rip.redist[protocol]['metric'] %}
redistribute {{protocol}} metric {{rip.redist[protocol]['metric']}}
{% elif rip.redist[protocol]['route_map'] %}
redistribute {{protocol}} route-map {{rip.redist[protocol]['route_map']}}
{% else %}
redistribute {{protocol}}
{% endif %}
{% endfor %}
{% for iface in old_rip.distribute %}
{% if old_rip.distribute[iface].iface_access_list_in %}
no distribute-list {{old_rip.distribute[iface].iface_access_list_in}} in {{iface}}
{% endif %}
{% if old_rip.distribute[iface].iface_access_list_out %}
no distribute-list {{old_rip.distribute[iface].iface_access_list_out}} out {{iface}}
{% endif %}
{% if old_rip.distribute[iface].iface_prefix_list_in %}
no distribute-list prefix {{old_rip.distribute[iface].iface_prefix_list_in}} in {{iface}}
{% endif %}
{% if old_rip.distribute[iface].iface_prefix_list_out %}
no distribute-list prefix {{old_rip.distribute[iface].iface_prefix_list_out}} out {{iface}}
{% endif %}
{% endfor %}
{% for iface in rip.distribute %}
{% if rip.distribute[iface].iface_access_list_in %}
distribute-list {{rip.distribute[iface].iface_access_list_in}} in {{iface}}
{% endif %}
{% if rip.distribute[iface].iface_access_list_out %}
distribute-list {{rip.distribute[iface].iface_access_list_out}} out {{iface}}
{% endif %}
{% if rip.distribute[iface].iface_prefix_list_in %}
distribute-list prefix {{rip.distribute[iface].iface_prefix_list_in}} in {{iface}}
{% endif %}
{% if rip.distribute[iface].iface_prefix_list_out %}
distribute-list prefix {{rip.distribute[iface].iface_prefix_list_out}} out {{iface}}
{% endif %}
{% endfor %}
{% if old_rip.dist_acl_in %}
no distribute-list {{old_rip.dist_acl_in}} in
{% endif %}
{% if rip.dist_acl_in %}
distribute-list {{rip.dist_acl_in}} in
{% endif %}
{% if old_rip.dist_acl_out %}
no distribute-list {{old_rip.dist_acl_out}} out
{% endif %}
{% if rip.dist_acl_out %}
distribute-list {{rip.dist_acl_out}} out
{% endif %}
{% if old_rip.dist_prfx_in %}
no distribute-list prefix {{old_rip.dist_prfx_in}} in
{% endif %}
{% if rip.dist_prfx_in %}
distribute-list prefix {{rip.dist_prfx_in}} in
{% endif %}
{% if old_rip.dist_prfx_out %}
no distribute-list prefix {{old_rip.dist_prfx_out}} out
{% endif %}
{% if rip.dist_prfx_out %}
distribute-list prefix {{rip.dist_prfx_out}} out
{% endif %}
{% for network in old_rip.networks %}
no network {{network}}
{% endfor %}
{% for network in rip.networks %}
network {{network}}
{% endfor %}
{% for iface in old_rip.ifaces %}
no network {{iface}}
{% endfor %}
{% for iface in rip.ifaces %}
network {{iface}}
{% endfor %}
{% for neighbor in old_rip.neighbors %}
no neighbor {{neighbor}}
{% endfor %}
{% for neighbor in rip.neighbors %}
neighbor {{neighbor}}
{% endfor %}
{% for net in rip.net_distance %}
{% if rip.net_distance[net].access_list and rip.net_distance[net].distance %}
distance {{rip.net_distance[net].distance}} {{net}} {{rip.net_distance[net].access_list}} 
{% else %}
distance {{rip.net_distance[net].distance}} {{net}} 
{% endif %}
{% endfor %}
{% for passive_iface in old_rip.passive_iface %}
no passive-interface {{passive_iface}}
{% endfor %}
{% for passive_iface in rip.passive_iface %}
passive-interface {{passive_iface}}
{% endfor %}
{% for route in old_rip.route %}
no route {{route}}
{% endfor %}
{% for route in rip.route %}
route {{route}}
{% endfor %}
{% if old_rip.timer_update or old_rip.timer_timeout or old_rip.timer_garbage %}
no timers basic
{% endif %}
{% if rip.timer_update or rip.timer_timeout or rip.timer_garbage %}
timers basic {{rip.timer_update}} {{rip.timer_timeout}} {{rip.timer_garbage}}
{% endif %}
!
{% else %}
no router rip
!
{% endif %}