summaryrefslogtreecommitdiff
path: root/templates/protocols/ospf/redistribute/rip
diff options
context:
space:
mode:
Diffstat (limited to 'templates/protocols/ospf/redistribute/rip')
-rw-r--r--templates/protocols/ospf/redistribute/rip/metric-type/node.def8
-rw-r--r--templates/protocols/ospf/redistribute/rip/node.def35
2 files changed, 27 insertions, 16 deletions
diff --git a/templates/protocols/ospf/redistribute/rip/metric-type/node.def b/templates/protocols/ospf/redistribute/rip/metric-type/node.def
new file mode 100644
index 00000000..07f1e577
--- /dev/null
+++ b/templates/protocols/ospf/redistribute/rip/metric-type/node.def
@@ -0,0 +1,8 @@
+type: u32
+help: Set OSPF metric type
+default: 2
+
+syntax:expression: $VAR(@) in 1, 2 ; "metric-type must be either 1 or 2"
+
+comp_help: possible completions:
+ <1-2> Set metric type (default 2)
diff --git a/templates/protocols/ospf/redistribute/rip/node.def b/templates/protocols/ospf/redistribute/rip/node.def
index 58bd8338..4382e22f 100644
--- a/templates/protocols/ospf/redistribute/rip/node.def
+++ b/templates/protocols/ospf/redistribute/rip/node.def
@@ -1,18 +1,21 @@
help: Set to redistribute RIP routes
delete:expression: "touch /tmp/ospf-redist-rip.$PPID"
-end:expression: "${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" \
- -c \"router ospf\" \
- -c \"no redistribute rip \"; \
- if [ -f \"/tmp/ospf-redist-rip.$PPID\" ]; then \
- rm -rf /tmp/ospf-redist-rip.$PPID; \
- else \
- if [ -n \"$VAR(./metric/@)\" ]; then \
- COND=\"metric $VAR(./metric/@)\"; \
- fi; \
- if [ -n \"$VAR(./route-map/@)\" ]; then \
- COND=\"$COND route-map $VAR(./route-map/@)\"; \
- fi; \
- ${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" \
- -c \"router ospf\" \
- -c \"redistribute rip $COND\"; \
- fi; "
+end: ${vyatta_sbindir}/vyatta-vtysh.pl -c "configure terminal" \
+ -c "router ospf" \
+ -c "no redistribute rip";
+ if [ -f "/tmp/ospf-redist-rip.$PPID" ]; then
+ rm -f /tmp/ospf-redist-rip.$PPID;
+ else
+ if [ -n "$VAR(./metric/@)" ]; then
+ COND="metric $VAR(./metric/@)";
+ fi;
+ if [ -n "$VAR(./route-map/@)" ]; then
+ COND="$COND route-map $VAR(./route-map/@)";
+ fi;
+ if [ -n "$VAR(./metric-type/@)" ]; then
+ COND="$COND metric-type $VAR(./metric-type/@)";
+ fi;
+ ${vyatta_sbindir}/vyatta-vtysh.pl -c "configure terminal" \
+ -c "router ospf" \
+ -c "redistribute rip $COND";
+ fi;