summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)