Age | Commit message (Collapse) | Author |
|
Solves issues like Bug 4759 where qos-policy is commited to
an interface that does not exist in system until later.
(cherry picked from commit f94f46058fce5ca110a24ef90935b0f517b16d33)
|
|
Bug 4597
Don't print ARRAY() print the element of that array.
(cherry picked from commit 24889117e3aa124071e13541d4a6b663476226a2)
|
|
If policy is updated, then the function interfaces_using() has
to set correct arguments for later update.
(cherry picked from commit db0b46b068eda15884eb92636d52d6f821869283)
|
|
If policy is deleted, then the end: check is still run, but can
be safely ignored.
(cherry picked from commit 68312d5d735861153fbd28e5e3c98000761ca9a2)
|
|
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)
|
|
The CLI end: node does work correctly, so don't need to go walking configuration
manually
Bug 4545
(cherry picked from commit 377896b296827e4d7c3c20debb3487605c45bbe3)
|
|
Minor config confusion in script.
Bug 4532
(cherry picked from commit 28650945b96e0990fbe39e4743bca436662bae66)
|
|
Typo in syntax validation script
Bug 4485
|
|
Can't use perl closures in getOptions, if routine exits, the error
from getOptions rather than as exit code.
Bug 4477
|
|
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.
|
|
Having too long a name messes up column output on operational commands.
|
|
Bug 4296
Ehancement to allow configuring GRED as form of weighted RED.
|
|
|
|
|
|
Easier to just use 'select' in perl to avoid passing file
descriptor everywhere.
|
|
|
|
Want the policy names, not the policy type.
|
|
Getting a little ragged, use perltidy.
|
|
Make command more friendly if ever used manually. Handle multiple
values for list_policy, start_interface and delete_policy
|
|
Makes code simpler and will work better with config system.
Also eliminates need for isChanged() code.
|
|
Remove code that knows about serial/adsl, etc and replace with
new Vyatta::Interface. Simpler and fixes potential issues with
bonding, vif, etc.
|
|
Eliminate need for begin, just check for name conflicts at create.
|
|
When using closure form of GetOptions, any call to exit only
causes GetOptions error rather than exit of program. Since QoS
uses die to indicate transaction error, this doesn't work well!
|
|
Script calls --apply, and typo for --start-interface.
|
|
Having variable and function with same name is confusing.
|
|
Git hates trailing whitespace.
|
|
Bug 3473
Add ppp startup script to apply QoS on start of related
interfaces.
|
|
Forgot to enable strict.
|
|
Make loop variables local
|
|
New QoS feature to allow emulating WAN characteristics
|
|
|
|
Conflicts:
lib/Vyatta/Qos/TrafficLimiter.pm
|
|
Use more multi-level directory hierarchy instead of having all
modules at top level.
|
|
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
|
|
Handle Vif on serial.
Can't have update and create tag.
|
|
Bugfix 3834
Rather than "is not a valid bandwidth", say "bandwidth must be defined for ..."
|
|
Command completeion for policy name was broken by changes to add
in and out type.
|
|
The bandwidth value needs to be validated and converted if necessary.
|
|
This adds support for Qos using incoming policing. It is accepts the
syntax and processes commands, but is not fully debugged.
Bugfix: 3664
|
|
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
|
|
Add new configuration support for plain fifo queueing.
Better code for the table in perl script that loads queue objects.
|
|
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
|
|
When validating the class rates, need to leave the array of
classes in original form for later command processing.
Bugfix 3458
|
|
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
|
|
|
|
Bugfix 3450
If device is offline, can't find speed. So use a sensible default
and try a few times.
|
|
Should say "greater or equal" not "less than"
Bug 2919
|
|
Bugfix 2919
As long as the bandwidth isn't auto, then validate at commit time.
|
|
Add newline in right spot so words don't run together.
|
|
One more try at explaining why rates must be correct.
|