diff options
Diffstat (limited to 'templates/protocols')
-rw-r--r-- | templates/protocols/rip/timers/garbage-collection/node.def | 9 | ||||
-rw-r--r-- | templates/protocols/rip/timers/node.def | 21 | ||||
-rw-r--r-- | templates/protocols/rip/timers/timeout/node.def | 7 | ||||
-rw-r--r-- | templates/protocols/rip/timers/update/node.def | 8 |
4 files changed, 27 insertions, 18 deletions
diff --git a/templates/protocols/rip/timers/garbage-collection/node.def b/templates/protocols/rip/timers/garbage-collection/node.def index c30b35e4..2a7b2bc9 100644 --- a/templates/protocols/rip/timers/garbage-collection/node.def +++ b/templates/protocols/rip/timers/garbage-collection/node.def @@ -1,6 +1,7 @@ type: u32 default: 120 -help: Garbage collection timer. Default is 120. -syntax:expression: $VAR(@) >= 5 && $VAR(@) <= 2147483647; "Garbage collection timer must be between 5 and 2147483647" - - +help: Garbage collection timer +syntax:expression: $VAR(@) >= 5 && $VAR(@) <= 2147483647; \ + "Garbage collection timer must be between 5 and 2147483647" +comp_help: possible completions: + <5-2147483647> Garbage colletion time (default 120) diff --git a/templates/protocols/rip/timers/node.def b/templates/protocols/rip/timers/node.def index 94a46fb6..c1a16c29 100644 --- a/templates/protocols/rip/timers/node.def +++ b/templates/protocols/rip/timers/node.def @@ -1,11 +1,14 @@ help: Set RIP timer values delete:expression: "touch /tmp/rip-timers.$PPID" -end:expression: "${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" -c \"router rip\" \ - -c \"no timers basic\"; \ - if [ -f \"/tmp/rip-timers.$PPID\" ]; then \ - rm -rf /tmp/rip-timers.$PPID; \ - else \ - ${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" -c \"router rip\" \ - -c \"timers basic $VAR(./update/@) $VAR(./timeout/@) $VAR(./garbage-collection/@)\"; \ - fi; " - +end:expression: "${vyatta_sbindir}/vyatta-vtysh.pl \ + -c \"configure terminal\" -c \"router rip\" \ + -c \"no timers basic\"; \ + if [ -f \"/tmp/rip-timers.$PPID\" ]; then \ + rm -rf /tmp/rip-timers.$PPID; \ + else \ + ${vyatta_sbindir}/vyatta-vtysh.pl \ + -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 index cc7f2fe5..907662f0 100644 --- a/templates/protocols/rip/timers/timeout/node.def +++ b/templates/protocols/rip/timers/timeout/node.def @@ -1,4 +1,7 @@ type: u32 default: 180 -help: Routing information timeout timer. Default is 180. -syntax:expression: $VAR(@) >= 5 && $VAR(@) <= 2147483647; "Timeout timer must be between 5 and 2147483647" +help: Routing information timeout timer +syntax:expression: $VAR(@) >= 5 && $VAR(@) <= 2147483647; \ + "Timeout timer must be between 5 and 2147483647" +comp_help: possible completions: + <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 index 24d6bc09..6a48225f 100644 --- a/templates/protocols/rip/timers/update/node.def +++ b/templates/protocols/rip/timers/update/node.def @@ -1,5 +1,7 @@ type: u32 default: 30 -help: Routing table update timer in seconds. Default is 30. -syntax:expression: $VAR(@) >= 5 && $VAR(@) <= 2147483647; "Update timer must be between 5 and 2147483647" - +help: Routing table update timer +syntax:expression: $VAR(@) >= 5 && $VAR(@) <= 2147483647; \ + "Update timer must be between 5 and 2147483647" +comp_help: possible completions: + <5-2147483647> Routing table update timer in seconds (default 30) |