diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-03-29 20:09:53 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-03-29 20:09:53 -0700 |
commit | 431941ee7180b6b653d612719f7f2dc0f9d1e724 (patch) | |
tree | 2c0a1273dc6ab5242da407d8fe6583369f900d9e /scripts/vyatta-qos.pl | |
parent | fdd02b11dc07222c63d5831965ace2ae7e85fb18 (diff) | |
download | vyatta-cfg-qos-431941ee7180b6b653d612719f7f2dc0f9d1e724.tar.gz vyatta-cfg-qos-431941ee7180b6b653d612719f7f2dc0f9d1e724.zip |
Fix traffic-limiter qdisc for root
Need to put prio queue on root queue.
Diffstat (limited to 'scripts/vyatta-qos.pl')
-rwxr-xr-x | scripts/vyatta-qos.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-qos.pl b/scripts/vyatta-qos.pl index 68af9e1..fa03293 100755 --- a/scripts/vyatta-qos.pl +++ b/scripts/vyatta-qos.pl @@ -170,7 +170,7 @@ sub update_interface { $parent = 0xffff; print "qdisc add dev $device ingress\n"; } else { - print "qdisc add dev $device handle 1: prio\n"; + print "qdisc add dev $device root handle 1: prio\n"; } } |