Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-02-05 | ratelimiter: fix perlcritic warnings | Stephen Hemminger | |
2009-02-05 | Fairqueue: fix perlcritic warnings | Stephen Hemminger | |
2009-02-05 | Fix vyatta config name change | Stephen Hemminger | |
VyattaConfig is now Vyatta::Config | |||
2009-01-30 | 0.12.2debian/0.12.2 | Stephen Hemminger | |
2009-01-30 | Fix QoS over ppp interfaces | Stephen Hemminger | |
Bug 3473 Add ppp startup script to apply QoS on start of related interfaces. | |||
2009-01-30 | Fix error handling when no bandwidth specified | Stephen Hemminger | |
Bugfix 4075 Correctly report error message. | |||
2009-01-25 | Enable strict | Stephen Hemminger | |
Forgot to enable strict. | |||
2009-01-25 | Fix perl critic warning | Stephen Hemminger | |
Make loop variables local | |||
2009-01-22 | Don't reset txqueuelen after removing qos | Stephen Hemminger | |
Bugfix 3859 | |||
2009-01-08 | 0.12.1debian/0.12.1 | An-Cheng Huang | |
2008-12-12 | "files" file should be removed before package build | An-Cheng Huang | |
2008-12-12 | update maintainer information | An-Cheng Huang | |
2008-12-09 | Add support for network emulation | Stephen Hemminger | |
New QoS feature to allow emulating WAN characteristics | |||
2008-12-08 | Merge branch 'jenner' of suva.vyatta.com:/git/vyatta-cfg-qos into jenner | Stephen Hemminger | |
2008-12-08 | Ignore description in match specification | Stephen Hemminger | |
Bugfix 3976 Need to ignore description when checking | |||
2008-12-08 | Fix typo in import list | Stephen Hemminger | |
Incorrect capitalization | |||
2008-12-03 | Merge branch 'islavista' into jenner | Rick Balocca | |
2008-11-25 | 3.2.0vyatta/3.2.0debian/0.12 | Mark O'Brien | |
2008-11-24 | VyattaConfig -> Vyatta::Config | Stephen Hemminger | |
2008-11-24 | Change VyattaConfig to Vyatta::Config | Stephen Hemminger | |
2008-11-21 | Merge branch 'jenner' of suva.vyatta.com:/git/vyatta-cfg-qos into jenner | Stephen Hemminger | |
Conflicts: lib/Vyatta/Qos/TrafficLimiter.pm | |||
2008-11-20 | Change perl module names from VyattaQosXXX to Vyatta::Qos:XXX | Stephen Hemminger | |
Use more multi-level directory hierarchy instead of having all modules at top level. | |||
2008-11-19 | add support for development build | An-Cheng Huang | |
2008-11-10 | Change input rate limiting to use token bucket | Stephen 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-27 | Fix QoS on Vif | Stephen Hemminger | |
Handle Vif on serial. Can't have update and create tag. | |||
2008-10-25 | Add qos-policy hooks for vif over serial | Stephen Hemminger | |
Bugfix 3475 Need more templates for vif over serial | |||
2008-10-24 | Better help for match options | Stephen Hemminger | |
Bugfix 3833 Better help for configuration of match options | |||
2008-10-24 | Better message on missing bandwidth | Stephen Hemminger | |
Bugfix 3834 Rather than "is not a valid bandwidth", say "bandwidth must be defined for ..." | |||
2008-10-24 | fix minor qos-policy types | Stephen Hemminger | |
These two policy types didn't get fixed in change over to policy management. Bugfix 3829 | |||
2008-10-24 | Add support for QoS on tunnels | Stephen Hemminger | |
Makes sense to allow QoS on tunnels since they may be rate limited. | |||
2008-10-24 | Add qos-policies for bond devices | Stephen Hemminger | |
Per design, add qos-policy support for bonding trunk devices. | |||
2008-10-24 | Handle updates to existing vif qos | Stephen Hemminger | |
Need to change policy on update, not just create. | |||
2008-10-24 | Fix repeated spellin error | Stephen Hemminger | |
Several places have same copied help text with spelling error. | |||
2008-10-15 | Bugfix: 3684 | Bob Gilligan | |
Added QoS configuration parameters for ADSL interfaces using bridged ethernet encapsulation. | |||
2008-10-13 | Default ceiling for default class should be same as rate | Stephen 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-02 | Fix list-policy problem with ingress | Stephen Hemminger | |
Command completeion for policy name was broken by changes to add in and out type. | |||
2008-09-30 | fair-queue: validate policy on update | Stephen Hemminger | |
Need to check validity on update, not just create | |||
2008-09-30 | Validate ingress bandwidth value | Stephen Hemminger | |
The bandwidth value needs to be validated and converted if necessary. | |||
2008-09-23 | Add incoming traffic limiting to Qos | Stephen 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-05 | Workaround CLI regex problem | Stephen 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-29 | Add drop-tail (aka FIFO) QoS policy | Stephen Hemminger | |
Add new configuration support for plain fifo queueing. Better code for the table in perl script that loads queue objects. | |||
2008-08-11 | Allow either iproute package name | Stephen Hemminger | |
Later versions of vyatta-iproute are named iproute, and are identified by version. | |||
2008-07-23 | 3.1.2vyatta/3.1.4vyatta/3.1.3vyatta/3.1.2debian/0.11hollywood | Mark O'Brien | |
2008-07-23 | Handle auto bandwidth value better | Stephen 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-17 | Don't get classes confused and cause internal error | Stephen Hemminger | |
When validating the class rates, need to leave the array of classes in original form for later command processing. Bugfix 3458 | |||
2008-07-15 | Look for changes in QoS after commit | Stephen 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-15 | Merge branch 'hollywood' of suva.vyatta.com:/git/vyatta-cfg-qos into hollywood | Stephen Hemminger | |
2008-07-11 | Retry to find interface speed | Stephen Hemminger | |
Bugfix 3450 If device is offline, can't find speed. So use a sensible default and try a few times. | |||
2008-07-11 | Fix error message when ceiling < rate | Stephen Hemminger | |
Should say "greater or equal" not "less than" Bug 2919 | |||
2008-07-08 | validate traffic shaper rates at commit time if possible | Stephen Hemminger | |
Bugfix 2919 As long as the bandwidth isn't auto, then validate at commit time. |