summaryrefslogtreecommitdiff
path: root/templates/protocols/rip/timers
diff options
context:
space:
mode:
Diffstat (limited to 'templates/protocols/rip/timers')
-rw-r--r--templates/protocols/rip/timers/garbage-collection/node.def6
-rw-r--r--templates/protocols/rip/timers/node.def11
-rw-r--r--templates/protocols/rip/timers/timeout/node.def6
-rw-r--r--templates/protocols/rip/timers/update/node.def6
4 files changed, 0 insertions, 29 deletions
diff --git a/templates/protocols/rip/timers/garbage-collection/node.def b/templates/protocols/rip/timers/garbage-collection/node.def
deleted file mode 100644
index a88d2324..00000000
--- a/templates/protocols/rip/timers/garbage-collection/node.def
+++ /dev/null
@@ -1,6 +0,0 @@
-type: u32
-default: 120
-help: Garbage collection timer
-syntax:expression: $VAR(@) >= 5 && $VAR(@) <= 2147483647; \
- "Garbage collection timer must be between 5 and 2147483647"
-val_help: u32:5-2147483647; Garbage colletion time (default 120)
diff --git a/templates/protocols/rip/timers/node.def b/templates/protocols/rip/timers/node.def
deleted file mode 100644
index c8132c64..00000000
--- a/templates/protocols/rip/timers/node.def
+++ /dev/null
@@ -1,11 +0,0 @@
-help: RIP timer values
-
-delete: touch /tmp/rip-timers.$PPID
-
-end: vtysh -c "configure terminal" -c "router rip" -c "no timers basic"
- if [ -f "/tmp/rip-timers.$PPID" ]; then
- rm -rf /tmp/rip-timers.$PPID
- else
- vtysh -c "configure terminal" -c "router rip" \
- -c "timers basic $VAR(./update/@) $VAR(./timeout/@) $VAR(./garbage-collection/@)"
- fi
diff --git a/templates/protocols/rip/timers/timeout/node.def b/templates/protocols/rip/timers/timeout/node.def
deleted file mode 100644
index 391807a9..00000000
--- a/templates/protocols/rip/timers/timeout/node.def
+++ /dev/null
@@ -1,6 +0,0 @@
-type: u32
-default: 180
-help: Routing information timeout timer
-syntax:expression: $VAR(@) >= 5 && $VAR(@) <= 2147483647; \
- "Timeout timer must be between 5 and 2147483647"
-val_help: u32:5-2147483647; Routing information timeout timer (default 180)
diff --git a/templates/protocols/rip/timers/update/node.def b/templates/protocols/rip/timers/update/node.def
deleted file mode 100644
index 88795cc4..00000000
--- a/templates/protocols/rip/timers/update/node.def
+++ /dev/null
@@ -1,6 +0,0 @@
-type: u32
-default: 30
-help: Routing table update timer
-syntax:expression: $VAR(@) >= 5 && $VAR(@) <= 2147483647; \
- "Update timer must be between 5 and 2147483647"
-val_help: u32:5-2147483647; Routing table update timer in seconds (default 30)