diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-05-20 16:47:39 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-05-20 16:47:39 -0700 |
commit | d32ddd306f71e5878219ef472ad7cccca9630010 (patch) | |
tree | 97ac1d8a7fa3a2686a9d2d4b518f86744d94daff /templates | |
parent | 50840133e5132e6c269e14bf4e54ddbef8aec0d2 (diff) | |
download | vyatta-cfg-qos-d32ddd306f71e5878219ef472ad7cccca9630010.tar.gz vyatta-cfg-qos-d32ddd306f71e5878219ef472ad7cccca9630010.zip |
Fix definition of class values
GRED only allows 1..16 for classes, and reserve one for default
so only 1..15 are ok for class value.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/qos-policy/weighted-random/node.tag/class/node.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/qos-policy/weighted-random/node.tag/class/node.def b/templates/qos-policy/weighted-random/node.tag/class/node.def index d606de1..ae4177d 100644 --- a/templates/qos-policy/weighted-random/node.tag/class/node.def +++ b/templates/qos-policy/weighted-random/node.tag/class/node.def @@ -1,6 +1,6 @@ tag: type: u32 help: Set class handle -syntax:expression: $VAR(@) > 1 && $VAR(@) < 4096; "Class identifier must be between 3 and 4095" +syntax:expression: $VAR(@) >= 1 && $VAR(@) < 16; "Class identifier must be between 1 and 15" comp_help: possible completions - <2-4095> Class ID + <1-15> Class ID |