Displaying 2 results from an estimated 2 matches for "136kbps".
Did you mean:
1536kbps
2005 Jan 14
0
problem with mark, need help
...dth, but if package
from $LOCAL_IP to 192.168.10.2
it will be marked two time (mark 3 then mark 1). Why iptables doing it?
# config bandwidth
#!/bin/bash
TC=/sbin/tc
$TC qdisc add dev eth0 root handle 1:0 htb default 4
# sub class of root
$TC class add dev eth0 parent 1:0 classid 1:1 htb rate 136kbps ceil 136kbps
$TC class add dev eth0 parent 1:1 classid 1:2 htb rate 128kbps ceil 128kbps
$TC class add dev eth0 parent 1:1 classid 1:3 htb rate 8kbps ceil 8kbps
# Classes for local users
$TC class add dev eth0 parent 1:2 classid 1:20 htb rate 16kbps ceil 128kbps
$TC class add dev eth0 parent 1:2...
2003 Aug 15
0
The woods never end with HTB
...classid 1:0005 htb rate 136.533333333333Kbit ceil 136.533333333333Kbit prio 5
tc qdisc add dev eth1 parent 1:0005 handle 0005 sfq perturb 10
tc filter add dev eth1 parent 1:0 protocol ip prio 200 handle 65537 fw classid 1:0005
To be specific, the host in class 1:0005 on eth1 downloads at the full
136Kbps on its own. As soon as any host in the 1:0004 class starts
downloading, however, the bandwidth of the 1:0005 host drops to some
50-60Kbps.
Is there something very obvious that I''m missing? Any light on this
issue would be a great help.
Regards,
-- Raju
--
Raj Mathur r...