summaryrefslogtreecommitdiff
path: root/templates/qos-policy
AgeCommit message (Collapse)Author
2009-11-30added required keyword to help text.Michael Larson
2009-11-05Fix parse error found by check_tmpl script.Stig Thormodsrud
2009-10-20add support for priority in projectslioch
2009-10-01Don't allow random-detect type for round-robin queue typeStephen Hemminger
Random detect requires bandwidth which is not part of round robin policy. Therefore drop it as a configurable value. Bug 4595 (cherry picked from commit b1b823012b2a1aa0fa8578054fc1179f92a32c2f)
2009-10-01Remove extra quote that caused shell error in fair-queueStephen Hemminger
Bug 4590 (cherry picked from commit 447b5430e8f4019e5d3b6e3f1f2025712d1c7b7f)
2009-10-01Fix update (apply-policy) at endStephen Hemminger
The $VAR(.) is not set on end node, so have to go hunting for policy type. Related to Bug 4545 (cherry picked from commit 39712bfaf390a4435218a14308cc6efa1a2d39b8)
2009-10-01Cleanup how qos-policy change detection worksStephen Hemminger
The CLI end: node does work correctly, so don't need to go walking configuration manually Bug 4545 (cherry picked from commit 377896b296827e4d7c3c20debb3487605c45bbe3)
2009-10-01Allow setting queue limit and average packet sizeStephen Hemminger
Two more (optional) parameters for random detect precedence groups. Bug 4518,4519 (cherry picked from commit 8104da09f5da338c6ce0813c367262de4e417598)
2009-10-01Allow random-detect for round-robin subqueueStephen Hemminger
Bug 4516 (cherry picked from commit 26890ac98e3ed6c0830e61fa91f306fea0cc227a)
2009-06-01Fix more places where VAR is quotedStephen Hemminger
CLI quoting in expressions seems to have changed, so adapt. Bug 4485
2009-06-01Fix problems with bandwidth templateStephen Hemminger
Bug 4485 Change template to deal with CLI changes in quoting evaluation of expressions.
2009-05-29Mark probability must be > 0Stephen Hemminger
2009-05-29Need to require network delayStephen Hemminger
Packet reordering doesn't work unless there are packets in the queue, and no packets are held unless there is a delay.
2009-05-26Can't have RED queue with Round RobinStephen Hemminger
The RED queue setup needs a rate value and RR doesn't have rate configuration.
2009-05-23Reimplementation of WREDStephen Hemminger
Make a simpler version of WRED that acts more like Cisco. Use Diffserv on Linux paper for example of how to use DSMARK and GRED to achieve similar result.
2009-05-20Fix definition of class valuesStephen Hemminger
GRED only allows 1..16 for classes, and reserve one for default so only 1..15 are ok for class value.
2009-05-20Fix help textStephen Hemminger
Class value of 2 is allowed.
2009-05-20change default packet size ot 1024Stephen Hemminger
2009-05-19Rename weighted-randomStephen Hemminger
Having too long a name messes up column output on operational commands.
2009-05-19Add Weighted RED QosStephen Hemminger
Bug 4296 Ehancement to allow configuring GRED as form of weighted RED.
2009-04-15Add Qos matching based on Ethernet MAC addressStephen Hemminger
Use existing u32 infrastructure to match in header
2009-04-14Remove priority queue implementationStephen Hemminger
It needs more work (not ready for prime time).
2009-04-13Merge branch 'jenner' of 192.168.1.9:git/qos into jennerStephen Hemminger
2009-04-13Add priority policy supportStephen Hemminger
New policy allowing strict priority traffic assignment
2009-04-13Add deficit Round-Robin supportStephen Hemminger
Round-robin class based policy
2009-04-13Merge branch 'jenner' of suva.vyatta.com:/git/vyatta-cfg-qos into jennerStephen Hemminger
2009-04-09Add IPV6 support to QoSStephen Hemminger
Bug 4230 Allow matching based on IPV6 addresses and ports Generalize existing matching code.
2009-04-03Remove extra help textStephen Hemminger
2009-03-12Replace update with create on multi-nodeStephen Hemminger
Don't break new config process
2009-03-08Move apply from top level into policy nodesStephen Hemminger
Makes code simpler and will work better with config system. Also eliminates need for isChanged() code.
2009-03-08Fold name conflict checking into policy creationStephen Hemminger
Eliminate need for begin, just check for name conflicts at create.
2008-12-09Add support for network emulationStephen Hemminger
New QoS feature to allow emulating WAN characteristics
2008-11-10Change input rate limiting to use token bucketStephen Hemminger
There are two ways to input rate limit. One uses the generic rate estimator which is supposed to measure average rate, the other is to use a token bucket based packet counter. Well the generic rate estimator doesn't work correctly in current kernels (no effect), so switch to using rate and burst. Bugfix 3881
2008-10-24Better help for match optionsStephen Hemminger
Bugfix 3833 Better help for configuration of match options
2008-10-24fix minor qos-policy typesStephen Hemminger
These two policy types didn't get fixed in change over to policy management. Bugfix 3829
2008-10-13Default ceiling for default class should be same as rateStephen Hemminger
It is confusing the default for ceiling for unclassified traffic is 100% of available bandwidth, especially because there is no default ceiling for other classes.
2008-09-30fair-queue: validate policy on updateStephen Hemminger
Need to check validity on update, not just create
2008-09-23Add incoming traffic limiting to QosStephen Hemminger
This adds support for Qos using incoming policing. It is accepts the syntax and processes commands, but is not fully debugged. Bugfix: 3664
2008-09-05Workaround CLI regex problemStephen Hemminger
Recent CLI changes seem to have broken working templates that do regex matching. Workaround this by doing the syntax checking all in the perl script Bugfix: 3553
2008-08-29Add drop-tail (aka FIFO) QoS policyStephen Hemminger
Add new configuration support for plain fifo queueing. Better code for the table in perl script that loads queue objects.
2008-07-15Look for changes in QoS after commitStephen Hemminger
Since configuration system doesn't correctly notify on addition/deletion, have to introduce this extra verbosity to have each traffic-shaper type check for changes. Bugfix for 3452
2008-05-14new qos-policy type rate-limitStephen Hemminger
Add new QoS policy type "rate-limit" which is a wrapper around the the Token Bucket Filter (TBF) qdisc. Rate limit provides a simple way to do basic bandwidth limitation without the complexity of the doing multiple classes in the traffic shaper policy.
2008-04-14Merge branch 'glendale' into hollywoodrbalocca
Conflicts: templates/qos-policy/traffic-shaper/node.tag/class/node.tag/priority/node.def templates/qos-policy/traffic-shaper/node.tag/default/priority/node.def
2008-04-12Limit Qos priority valuesStephen Hemminger
HTB in kernel only accepts 0-7 anything higher is rounded down to 7. (see TC_HTB_NUMPRIO). Apply syntax checks to limit to that range and add better help. Fixes: 3098
2008-04-09Fix Bug 3069 Help strings should be standardizedMohit Mehta
- help strings standardized in vyatta-cfg-qos
2008-03-20Put back the spelling fixes.Stephen Hemminger
Revert "More trivial stuff to wait for after freeze" This reverts commit 2e81183ba5830f781c2e37246b6b59f82649fa3e.
2008-03-19More trivial stuff to wait for after freezeStephen Hemminger
Revert "Use uppercase when describing DSCP in help text" This reverts commit e49e5b53411b50b1c8f13cded1641975f0443fde.
2008-03-19Use uppercase when describing DSCP in help textStephen Hemminger
Trivial fix for Bug 2930
2008-03-07tab completion for protocol valuesStephen Hemminger
Add tab completion for values in /etc/protocols and completion help. Bugfix: 2972
2008-03-07syntax fix for fair-queue/queue-limitStephen Hemminger
Bugfix: 2939 Add needed space for template.