search for: dl_dev

Displaying 1 result from an estimated 1 matches for "dl_dev".

Did you mean: bl_dev
2005 Jul 02
0
Bandwidth shaping script appears to incorrectly halve the bandwidth
..., I didn''t see any increase. There still seemed to be only around 256kbps of traffic coming in and around 256kbps of traffic going out. Any help on this would be much appreciated. #!/bin/bash # Set the incoming and outgoing bandwidth here. INCOMING_BW=512 OUTGOING_BW=512 UL_DEV=eth0 DL_DEV=eth1 # clean existing down- and uplink qdiscs, hide errors tc qdisc del dev $UL_DEV root 2> /dev/null > /dev/null tc qdisc del dev $DL_DEV root 2> /dev/null > /dev/null # install root CBQ echo Installing Root CBQ tc qdisc add dev $UL_DEV root handle 1: cbq avpkt 1000 bandwidth...