summaryrefslogtreecommitdiff
path: root/templates/protocols/rip/redistribute/static
diff options
context:
space:
mode:
Diffstat (limited to 'templates/protocols/rip/redistribute/static')
-rw-r--r--templates/protocols/rip/redistribute/static/metric/node.def3
-rw-r--r--templates/protocols/rip/redistribute/static/node.def16
-rw-r--r--templates/protocols/rip/redistribute/static/route-map/node.def3
3 files changed, 22 insertions, 0 deletions
diff --git a/templates/protocols/rip/redistribute/static/metric/node.def b/templates/protocols/rip/redistribute/static/metric/node.def
new file mode 100644
index 00000000..270a810e
--- /dev/null
+++ b/templates/protocols/rip/redistribute/static/metric/node.def
@@ -0,0 +1,3 @@
+type: u32
+help: "Metric for redistributed routes"
+syntax: $(@) >= 1 && $(@) <= 16; "metric must be between 1 and 16"
diff --git a/templates/protocols/rip/redistribute/static/node.def b/templates/protocols/rip/redistribute/static/node.def
new file mode 100644
index 00000000..8cbbfc1b
--- /dev/null
+++ b/templates/protocols/rip/redistribute/static/node.def
@@ -0,0 +1,16 @@
+help: "Redistribute static routes"
+delete: "touch /tmp/rip-redist-static.\\$PPID"
+end: "/usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \
+ -c \"no redistribute static \"; \
+ if [ -f \"/tmp/rip-redist-static.\\$PPID\" ]; then \
+ rm -rf /tmp/rip-redist-static.\\$PPID; \
+ else \
+ if [ -n \"$(./metric/@)\" ]; then \
+ COND=\"metric $(./metric/@)\";
+ fi; \
+ if [ -n \"$(./route-map/@)\" ]; then \
+ COND=\"\\$COND route-map $(./route-map/@)\"; \
+ fi; \
+ /usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \
+ -c \"redistribute static \\$COND\"; \
+ fi; "
diff --git a/templates/protocols/rip/redistribute/static/route-map/node.def b/templates/protocols/rip/redistribute/static/route-map/node.def
new file mode 100644
index 00000000..5ce5f0ab
--- /dev/null
+++ b/templates/protocols/rip/redistribute/static/route-map/node.def
@@ -0,0 +1,3 @@
+type: txt
+help: "Route map reference"
+commit: exec "/opt/vyatta/sbin/vyatta_quagga_utils.pl --exists \"policy route-map $(@)\" ";"route-map $(@) doesn't exist"