diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-05-26 16:01:07 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-05-26 16:01:07 -0700 |
commit | a2bd5ff56304e11e7be738735287511bab84e929 (patch) | |
tree | 248d93b726d1a97d23ec5f04e20ddfb80c080fb7 | |
parent | d44e3e192b91fe86d399d73b1cdc5a646f767695 (diff) | |
download | vyatta-cfg-qos-a2bd5ff56304e11e7be738735287511bab84e929.tar.gz vyatta-cfg-qos-a2bd5ff56304e11e7be738735287511bab84e929.zip |
Fix WRED setup
1. Use 0 for default class
2. Use indices in dsmark
3. Better formatting
-rw-r--r-- | lib/Vyatta/Qos/RandomDetect.pm | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/lib/Vyatta/Qos/RandomDetect.pm b/lib/Vyatta/Qos/RandomDetect.pm index 155b669..67bbd73 100644 --- a/lib/Vyatta/Qos/RandomDetect.pm +++ b/lib/Vyatta/Qos/RandomDetect.pm @@ -94,13 +94,22 @@ sub commands { my $rate = getAutoRate( $self->{_rate}, $dev ); # 1. setup DSMARK to convert DSCP to tc_index - print "qdisc add dev eth0 root handle $root: dsmark indices 1 set_tc_index\n"; + printf "qdisc add dev %s root handle %x:0 dsmark indices 8 set_tc_index\n", + $dev, $root; # 2. use tcindex filter to convert tc_index to precedence - print - "filter add dev $dev parent $root: protocol ip prio 1 tcindex mask 0xe0 shift 5\n"; + # + # Precedence Field: the three leftmost bits in the TOS octet of an IPv4 + # header. - print "qdisc add dev $dev parent $root: gred setup DPs 8 default 7\n"; + printf "filter add dev %s parent %x:0 protocol ip prio 1 ", + $dev, $root; + print " tcindex mask 0xe0 shift 5\n"; + + # 3. Define GRED with unmatched traffic going to index 0 + printf "qdisc add dev %s parent %x:0 handle %x:0 gred ", + $dev, $root, $root+1; + print " setup DPs 8 default 0 grio\n"; # set VQ parameters for ( my $i = 0 ; $i <= 7 ; $i++ ) { @@ -109,10 +118,10 @@ sub commands { my $qmax = $param->{'max-threshold'}; my $prob = $param->{'mark-probability'}; - print "qdisc change dev $dev parent $root:$i gred"; + printf "qdisc change dev %s parent %x:%x", $dev, $root+1, $i; printf " limit %dK min %dK max %dK avpkt 1K", 4 * $qmax, $qmin, $qmax; - printf " burst %d bandwidth %d DP %d probability %f\n", - ( 2 * $qmin + $qmax ) / 3, $rate, $i, $prob; + printf " burst %d bandwidth %d probability %f DP %d prio %d\n", + ( 2 * $qmin + $qmax ) / 3, $rate, $prob, $i, $i; } } |