summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-10-24Better message on missing bandwidthStephen Hemminger
Bugfix 3834 Rather than "is not a valid bandwidth", say "bandwidth must be defined for ..."
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-24Add support for QoS on tunnelsStephen Hemminger
Makes sense to allow QoS on tunnels since they may be rate limited.
2008-10-24Add qos-policies for bond devicesStephen Hemminger
Per design, add qos-policy support for bonding trunk devices.
2008-10-24Handle updates to existing vif qosStephen Hemminger
Need to change policy on update, not just create.
2008-10-24Fix repeated spellin errorStephen Hemminger
Several places have same copied help text with spelling error.
2008-10-15Bugfix: 3684Bob Gilligan
Added QoS configuration parameters for ADSL interfaces using bridged ethernet encapsulation.
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-10-02Fix list-policy problem with ingressStephen Hemminger
Command completeion for policy name was broken by changes to add in and out type.
2008-09-30fair-queue: validate policy on updateStephen Hemminger
Need to check validity on update, not just create
2008-09-30Validate ingress bandwidth valueStephen Hemminger
The bandwidth value needs to be validated and converted if necessary.
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-08-11Allow either iproute package nameStephen Hemminger
Later versions of vyatta-iproute are named iproute, and are identified by version.
2008-07-233.1.2vyatta/3.1.4vyatta/3.1.3vyatta/3.1.2debian/0.11hollywoodMark O'Brien
2008-07-23Handle auto bandwidth value betterStephen Hemminger
Need to handle the case of devices that don't know their current speed. In this case, ethtool will print "Unknown!" which the old code wasn't handling right. Move the default speed stuff down into traffic shaper code as well, so any future policies using auto can make other choices as to what to do in this case. Bugfix: 3450
2008-07-17Don't get classes confused and cause internal errorStephen Hemminger
When validating the class rates, need to leave the array of classes in original form for later command processing. Bugfix 3458
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-07-15Merge branch 'hollywood' of suva.vyatta.com:/git/vyatta-cfg-qos into hollywoodStephen Hemminger
2008-07-11Retry to find interface speedStephen Hemminger
Bugfix 3450 If device is offline, can't find speed. So use a sensible default and try a few times.
2008-07-11Fix error message when ceiling < rateStephen Hemminger
Should say "greater or equal" not "less than" Bug 2919
2008-07-08validate traffic shaper rates at commit time if possibleStephen Hemminger
Bugfix 2919 As long as the bandwidth isn't auto, then validate at commit time.
2008-06-173.1.0vyatta/3.1.1vyatta/3.1.0debian/0.10Mark O'Brien
2008-06-11Fix formatting of error messageStephen Hemminger
Add newline in right spot so words don't run together.
2008-06-10Fix error messages for misconfigurationStephen Hemminger
One more try at explaining why rates must be correct.
2008-06-09Fix speed detection on vlan interfaceStephen Hemminger
Use speed of underlying interface. Bug 3137
2008-06-06Fix mixing of set-dscp and dscp matchStephen Hemminger
Use tcindex to get original dsfield value. Fixes bug: 3033
2008-06-03Apply filters always to root.Stephen Hemminger
This might resolve issues with set-dscp and later dscp matches.
2008-05-20Ignore derived filesrbalocca
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-05-14remove unused uninitialized variableStephen Hemminger
One of the parameters to TrafficShaper::_define was not being passed or used.
2008-05-08Fail on commit if ceiling is less than bandwidthStephen Hemminger
Change the existing warning into a failure. No one reads warnings, and the shaping is unstable if ceiling < bandwidth.
2008-05-07Convert to our method of changelog creationrbalocca
2008-05-07Merge branch 'glendale' into hollywoodrbalocca
2008-05-063.0.5debian/0.9glendaleMark O'Brien
2008-05-053.0.4debian/0.8Mark O'Brien
2008-05-01Add QoS policy configurability for PPPOE, PPPOA and classical IP overBob Gilligan
ATM interfaces on ADSL, and PPPOE on ethernet interfaces.
2008-04-293.0.3debian/0.7Mark O'Brien
2008-04-21Merge branch 'glendale' into hollywoodhollisterrbalocca
2008-04-21Indicate the VC4.0.2 release candidate in the changelogrbalocca
2008-04-19VC4.0.2debian/0.6Mark O'Brien
2008-04-16VC4.0.2debian/0.5Mark O'Brien
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-12change error message when speed can not be determinedStephen Hemminger
Slightly better message for the case of using auto value for bandwidth on a device does not support it. Bug: 3104
2008-04-11Merge branch 'glendale' into hollywoodrbalocca
2008-04-10fix QoS traffic shaper priority-queue setupStephen Hemminger
Yet another place where id needs to be converted to hex. Should fix bug 3078.
2008-04-10fix bug with interpretation of ceilingStephen Hemminger
This fixes problem which causes QoS not to fail on commit if ceiling is a percentage. The ceiling maybe a percentage (not fixed) value so it needs to be interpreted before passing to tc.
2008-04-09Fix Bug 3069 Help strings should be standardizedMohit Mehta
- help strings standardized in vyatta-cfg-qos