summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorStig Thormodsrud <stig@vyatta.com>2008-02-14 21:32:13 -0800
committerStig Thormodsrud <stig@vyatta.com>2008-02-14 21:32:13 -0800
commit10d43bf594c7619a9e6ba02db2906b2e87644a00 (patch)
tree6ff8a8bd97b68119f192953da81badac5a68e22a /templates
parentc77f48254bb13fb6aa6bf38f2f4462626c779c84 (diff)
downloadvyatta-cfg-quagga-10d43bf594c7619a9e6ba02db2906b2e87644a00.tar.gz
vyatta-cfg-quagga-10d43bf594c7619a9e6ba02db2906b2e87644a00.zip
Add default value for ospf auto-cost reference-bandwidth.
Diffstat (limited to 'templates')
-rw-r--r--templates/protocols/ospf/auto-cost/reference-bandwidth/node.def22
1 files changed, 15 insertions, 7 deletions
diff --git a/templates/protocols/ospf/auto-cost/reference-bandwidth/node.def b/templates/protocols/ospf/auto-cost/reference-bandwidth/node.def
index ed0efbd4..b6f5565c 100644
--- a/templates/protocols/ospf/auto-cost/reference-bandwidth/node.def
+++ b/templates/protocols/ospf/auto-cost/reference-bandwidth/node.def
@@ -1,9 +1,17 @@
type: u32
-help: Use reference bandwidth method to assign OSPF cost in Mbits/sec
-syntax:expression: $VAR(@) >= 1 && $VAR(@) <= 4294967; "Must be between 1-4294967"
-update:expression: "${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" \
- -c \"router ospf\" -c \"auto-cost reference-bandwidth $VAR(@) \"; "
-delete:expression: "${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" \
- -c \"router ospf\" -c \"no auto-cost reference-bandwidth \"; "
+help: Use reference bandwidth method to assign OSPF cost
+default: 100
+syntax:expression: $VAR(@) >= 1 && $VAR(@) <= 4294967; \
+ "Must be between 1-4294967"
+update:expression: "${vyatta_sbindir}/vyatta-vtysh.pl \
+ -c \"configure terminal\" \
+ -c \"router ospf\" \
+ -c \"auto-cost reference-bandwidth $VAR(@) \"; "
+
+delete:expression: "${vyatta_sbindir}/vyatta-vtysh.pl \
+ -c \"configure terminal\" \
+ -c \"router ospf\" \
+ -c \"no auto-cost reference-bandwidth \"; "
+
comp_help: possible completions:
- <1-4294967> Set reference bandwidth cost in Mbits/sec
+ <1-4294967> Set reference bandwidth cost in Mbits/sec (default 100)