summaryrefslogtreecommitdiff
path: root/data/templates/pim
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-05-17 15:59:53 +0200
committerChristian Poessinger <christian@poessinger.com>2020-05-17 15:59:53 +0200
commit2411cf35b3cf8a4b11a714ff426e98bc1872e3c3 (patch)
tree9252b85867c15f1fa208b56d2bfbf40726508e81 /data/templates/pim
parent7ba82de32e258c9e41ba69471d35d2dd28aa044b (diff)
downloadvyos-1x-2411cf35b3cf8a4b11a714ff426e98bc1872e3c3.tar.gz
vyos-1x-2411cf35b3cf8a4b11a714ff426e98bc1872e3c3.zip
frr: combine all templates in frr directory
Diffstat (limited to 'data/templates/pim')
-rw-r--r--data/templates/pim/pimd.frr.tmpl34
1 files changed, 0 insertions, 34 deletions
diff --git a/data/templates/pim/pimd.frr.tmpl b/data/templates/pim/pimd.frr.tmpl
deleted file mode 100644
index 1d1532c60..000000000
--- a/data/templates/pim/pimd.frr.tmpl
+++ /dev/null
@@ -1,34 +0,0 @@
-!
-{% for rp_addr in old_pim.rp -%}
-{% for group in old_pim.rp[rp_addr] -%}
-no ip pim rp {{ rp_addr }} {{ group }}
-{% endfor -%}
-{% endfor -%}
-{% if old_pim.rp_keep_alive -%}
-no ip pim rp keep-alive-timer {{ old_pim.rp_keep_alive }}
-{% endif -%}
-{% for iface in old_pim.ifaces -%}
-interface {{ iface }}
-no ip pim
-!
-{% endfor -%}
-{% for iface in pim.ifaces -%}
-interface {{ iface }}
-ip pim
-{% if pim.ifaces[iface].dr_prio -%}
-ip pim drpriority {{ pim.ifaces[iface].dr_prio }}
-{% endif -%}
-{% if pim.ifaces[iface].hello -%}
-ip pim hello {{ pim.ifaces[iface].hello }}
-{% endif -%}
-!
-{% endfor -%}
-{% for rp_addr in pim.rp -%}
-{% for group in pim.rp[rp_addr] -%}
-ip pim rp {{ rp_addr }} {{ group }}
-{% endfor -%}
-{% endfor -%}
-{% if pim.rp_keep_alive -%}
-ip pim rp keep-alive-timer {{ pim.rp_keep_alive }}
-{% endif -%}
-!