summaryrefslogtreecommitdiff
path: root/templates/protocols/rip/redistribute
diff options
context:
space:
mode:
authorStig Thormodsrud <stig@uffda.(none)>2007-10-12 16:48:14 -0700
committerStig Thormodsrud <stig@uffda.(none)>2007-10-12 16:48:14 -0700
commit83331a0a334130cc438805c124fd05d93eddd5d0 (patch)
treeb99cc192313d7803a4594084a65c041e7752e0dc /templates/protocols/rip/redistribute
parent0c23fb8b146cab3fbc48d4f8d45aae501e599a8a (diff)
downloadvyatta-cfg-quagga-83331a0a334130cc438805c124fd05d93eddd5d0.tar.gz
vyatta-cfg-quagga-83331a0a334130cc438805c124fd05d93eddd5d0.zip
First cut of RIP new cli.
Fix filename on vyatta_policy.pl.
Diffstat (limited to 'templates/protocols/rip/redistribute')
-rw-r--r--templates/protocols/rip/redistribute/bgp/metric/node.def3
-rw-r--r--templates/protocols/rip/redistribute/bgp/node.def16
-rw-r--r--templates/protocols/rip/redistribute/bgp/route-map/node.def4
-rw-r--r--templates/protocols/rip/redistribute/connected/metric/node.def6
-rw-r--r--templates/protocols/rip/redistribute/connected/node.def16
-rw-r--r--templates/protocols/rip/redistribute/connected/route-map/node.def3
-rw-r--r--templates/protocols/rip/redistribute/kernel/metric/node.def3
-rw-r--r--templates/protocols/rip/redistribute/kernel/node.def16
-rw-r--r--templates/protocols/rip/redistribute/kernel/route-map/node.def3
-rw-r--r--templates/protocols/rip/redistribute/node.def1
-rw-r--r--templates/protocols/rip/redistribute/ospf/metric/node.def4
-rw-r--r--templates/protocols/rip/redistribute/ospf/node.def17
-rw-r--r--templates/protocols/rip/redistribute/ospf/route-map/node.def3
-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
16 files changed, 117 insertions, 0 deletions
diff --git a/templates/protocols/rip/redistribute/bgp/metric/node.def b/templates/protocols/rip/redistribute/bgp/metric/node.def
new file mode 100644
index 00000000..270a810e
--- /dev/null
+++ b/templates/protocols/rip/redistribute/bgp/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/bgp/node.def b/templates/protocols/rip/redistribute/bgp/node.def
new file mode 100644
index 00000000..727cff10
--- /dev/null
+++ b/templates/protocols/rip/redistribute/bgp/node.def
@@ -0,0 +1,16 @@
+help: "Redistribute BGP routes"
+delete: "touch /tmp/rip-redist-bgp.\\$PPID"
+end: "/usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \
+ -c \"no redistribute bgp \"; \
+ if [ -f \"/tmp/rip-redist-bgp.\\$PPID\" ]; then \
+ rm -rf /tmp/rip-redist-bgp.\\$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 bgp \\$COND\"; \
+ fi; "
diff --git a/templates/protocols/rip/redistribute/bgp/route-map/node.def b/templates/protocols/rip/redistribute/bgp/route-map/node.def
new file mode 100644
index 00000000..f6e81288
--- /dev/null
+++ b/templates/protocols/rip/redistribute/bgp/route-map/node.def
@@ -0,0 +1,4 @@
+type: txt
+help: "Route map reference"
+commit: exec "/opt/vyatta/sbin/vyatta_quagga_utils.pl --exists \"policy route-map $(@)\" ";"route-map $(@) doesn't exist"
+
diff --git a/templates/protocols/rip/redistribute/connected/metric/node.def b/templates/protocols/rip/redistribute/connected/metric/node.def
new file mode 100644
index 00000000..d7ca3c34
--- /dev/null
+++ b/templates/protocols/rip/redistribute/connected/metric/node.def
@@ -0,0 +1,6 @@
+type: u32
+help: "Metric for redistributed routes"
+syntax: $(@) >= 1 && $(@) <= 16; "metric must be between 1 and 16"
+
+
+
diff --git a/templates/protocols/rip/redistribute/connected/node.def b/templates/protocols/rip/redistribute/connected/node.def
new file mode 100644
index 00000000..9af10ca8
--- /dev/null
+++ b/templates/protocols/rip/redistribute/connected/node.def
@@ -0,0 +1,16 @@
+help: "Redistribute connected routes"
+delete: "touch /tmp/rip-redist-connected.\\$PPID"
+end: "/usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \
+ -c \"no redistribute connected \"; \
+ if [ -f \"/tmp/rip-redist-connected.\\$PPID\" ]; then \
+ rm -rf /tmp/rip-redist-connected.\\$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 connected \\$COND\"; \
+ fi; "
diff --git a/templates/protocols/rip/redistribute/connected/route-map/node.def b/templates/protocols/rip/redistribute/connected/route-map/node.def
new file mode 100644
index 00000000..5ce5f0ab
--- /dev/null
+++ b/templates/protocols/rip/redistribute/connected/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"
diff --git a/templates/protocols/rip/redistribute/kernel/metric/node.def b/templates/protocols/rip/redistribute/kernel/metric/node.def
new file mode 100644
index 00000000..270a810e
--- /dev/null
+++ b/templates/protocols/rip/redistribute/kernel/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/kernel/node.def b/templates/protocols/rip/redistribute/kernel/node.def
new file mode 100644
index 00000000..6ca8d055
--- /dev/null
+++ b/templates/protocols/rip/redistribute/kernel/node.def
@@ -0,0 +1,16 @@
+help: "Redistribute kernel routes"
+delete: "touch /tmp/rip-redist-kernel.\\$PPID"
+end: "/usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \
+ -c \"no redistribute kernel \"; \
+ if [ -f \"/tmp/rip-redist-kernel.\\$PPID\" ]; then \
+ rm -rf /tmp/rip-redist-kernel.\\$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 kernel \\$COND\"; \
+ fi; "
diff --git a/templates/protocols/rip/redistribute/kernel/route-map/node.def b/templates/protocols/rip/redistribute/kernel/route-map/node.def
new file mode 100644
index 00000000..5ce5f0ab
--- /dev/null
+++ b/templates/protocols/rip/redistribute/kernel/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"
diff --git a/templates/protocols/rip/redistribute/node.def b/templates/protocols/rip/redistribute/node.def
new file mode 100644
index 00000000..e46c9122
--- /dev/null
+++ b/templates/protocols/rip/redistribute/node.def
@@ -0,0 +1 @@
+help: "Redistribute information from another routing protocol"
diff --git a/templates/protocols/rip/redistribute/ospf/metric/node.def b/templates/protocols/rip/redistribute/ospf/metric/node.def
new file mode 100644
index 00000000..01a2dda7
--- /dev/null
+++ b/templates/protocols/rip/redistribute/ospf/metric/node.def
@@ -0,0 +1,4 @@
+type: u32
+help: "Metric for redistributed routes"
+syntax: $(@) >= 1 && $(@) <= 16; "metric must be between 1 and 16"
+
diff --git a/templates/protocols/rip/redistribute/ospf/node.def b/templates/protocols/rip/redistribute/ospf/node.def
new file mode 100644
index 00000000..dfa076d9
--- /dev/null
+++ b/templates/protocols/rip/redistribute/ospf/node.def
@@ -0,0 +1,17 @@
+help: "Redistribute OSPF routes"
+delete: "touch /tmp/rip-redist-ospf.\\$PPID"
+end: "/usr/bin/vtysh -c \"configure terminal\" -c \"router rip\" \
+ -c \"no redistribute ospf \"; \
+ if [ -f \"/tmp/rip-redist-ospf.\\$PPID\" ]; then \
+ rm -rf /tmp/rip-redist-ospf.\\$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 ospf \\$COND\"; \
+ fi; "
+
diff --git a/templates/protocols/rip/redistribute/ospf/route-map/node.def b/templates/protocols/rip/redistribute/ospf/route-map/node.def
new file mode 100644
index 00000000..5ce5f0ab
--- /dev/null
+++ b/templates/protocols/rip/redistribute/ospf/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"
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"