summaryrefslogtreecommitdiff
path: root/templates/interfaces/bonding
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2010-07-16 14:51:13 -0700
committerStephen Hemminger <stephen.hemminger@vyatta.com>2010-07-16 17:28:50 -0700
commitc317fda4786d93e9cdf94deb1e52c5d581360b7e (patch)
tree482402f3382ef5dc9c3f4d67c73384ff2a3a86e5 /templates/interfaces/bonding
parentd7839af77fec135ed8342d935a6cb0e136a0d8cb (diff)
downloadvyatta-cfg-system-c317fda4786d93e9cdf94deb1e52c5d581360b7e.tar.gz
vyatta-cfg-system-c317fda4786d93e9cdf94deb1e52c5d581360b7e.zip
Add syntax validation for bridge STP parameters
The syntax range for bridge STP values was missing or incorrect. Bug 5864
Diffstat (limited to 'templates/interfaces/bonding')
-rw-r--r--templates/interfaces/bonding/node.tag/bridge-group/cost/node.def6
-rw-r--r--templates/interfaces/bonding/node.tag/bridge-group/priority/node.def8
-rw-r--r--templates/interfaces/bonding/node.tag/vif/node.tag/bridge-group/cost/node.def6
-rw-r--r--templates/interfaces/bonding/node.tag/vif/node.tag/bridge-group/priority/node.def8
4 files changed, 10 insertions, 18 deletions
diff --git a/templates/interfaces/bonding/node.tag/bridge-group/cost/node.def b/templates/interfaces/bonding/node.tag/bridge-group/cost/node.def
index f90f4769..33763624 100644
--- a/templates/interfaces/bonding/node.tag/bridge-group/cost/node.def
+++ b/templates/interfaces/bonding/node.tag/bridge-group/cost/node.def
@@ -1,6 +1,4 @@
type: u32
-
help: Set the path cost for this port
-
-comp_help: possible completions:
- <0-2147483647> Set port cost
+syntax:expression: $VAR(@) >= 1 && $VAR(@) < 65536 ; "Bridge cost value must be between 1 and 65535"
+val_help:<1-65535>; Path cost value for Spanning Tree Protocol
diff --git a/templates/interfaces/bonding/node.tag/bridge-group/priority/node.def b/templates/interfaces/bonding/node.tag/bridge-group/priority/node.def
index 5c11ec4f..d7a2f7a0 100644
--- a/templates/interfaces/bonding/node.tag/bridge-group/priority/node.def
+++ b/templates/interfaces/bonding/node.tag/bridge-group/priority/node.def
@@ -1,6 +1,4 @@
type: u32
-
-help: Set the path priority for this port
-
-comp_help: possible completions:
- <0-255> Set port priority
+help: Set the port priority for this port
+syntax:expression: $VAR(@) >= 0 &&$VAR(@) <= 255; "Port priority must be between 1-255"
+val_help:<1-255>; Bridge port priority
diff --git a/templates/interfaces/bonding/node.tag/vif/node.tag/bridge-group/cost/node.def b/templates/interfaces/bonding/node.tag/vif/node.tag/bridge-group/cost/node.def
index f90f4769..33763624 100644
--- a/templates/interfaces/bonding/node.tag/vif/node.tag/bridge-group/cost/node.def
+++ b/templates/interfaces/bonding/node.tag/vif/node.tag/bridge-group/cost/node.def
@@ -1,6 +1,4 @@
type: u32
-
help: Set the path cost for this port
-
-comp_help: possible completions:
- <0-2147483647> Set port cost
+syntax:expression: $VAR(@) >= 1 && $VAR(@) < 65536 ; "Bridge cost value must be between 1 and 65535"
+val_help:<1-65535>; Path cost value for Spanning Tree Protocol
diff --git a/templates/interfaces/bonding/node.tag/vif/node.tag/bridge-group/priority/node.def b/templates/interfaces/bonding/node.tag/vif/node.tag/bridge-group/priority/node.def
index 5c11ec4f..d7a2f7a0 100644
--- a/templates/interfaces/bonding/node.tag/vif/node.tag/bridge-group/priority/node.def
+++ b/templates/interfaces/bonding/node.tag/vif/node.tag/bridge-group/priority/node.def
@@ -1,6 +1,4 @@
type: u32
-
-help: Set the path priority for this port
-
-comp_help: possible completions:
- <0-255> Set port priority
+help: Set the port priority for this port
+syntax:expression: $VAR(@) >= 0 &&$VAR(@) <= 255; "Port priority must be between 1-255"
+val_help:<1-255>; Bridge port priority