Displaying 7 results from an estimated 7 matches for "55kbit".
Did you mean:
50kbit
2003 Nov 18
7
why all goes to default!!
Hi,
I have config like this ,... but all traffic goes to the default class 1:4, WHY ?
What I'' doing wrong... filters are attached to the root !
tc qdisc add dev eth0 handle 1:0 root htb default 4
tc class add dev eth0 parent 1:0 classid 1:4 htb rate 55kbit ceil 55kbit prio 7 <--default class
tc class add dev eth0 parent 1:0 classid 1:1 htb rate 20Mbit
tc qdisc add dev eth0 handle 2:0 parent 1:1 htb
tc class add dev eth0 parent 2:0 classid 2:3 htb rate 30kbit ceil 30kbit
tc qdisc add dev eth0 handle 3:0 parent 2:3 sfq
tc...
2007 May 08
5
limit bandwidth per host question
.../16
As far as I can see, this should do the trick?:
# delete all existing queue disciplines
tc qdisc del dev eth2 root
# attach queue discipline HTB to interface eth2 and give it handle 1:0
tc qdisc add dev eth2 root handle 1:0 htb
# host 1
tc class add dev eth2 parent 1:0 classid 1:1 htb rate 255kbit burst 255kbit
tc filter add dev eth2 protocol ip parent 1:0 prio 1 u32 \
match ip dst 172.16.255.132 flowid 1:1
# host 2
tc class add dev eth2 parent 1:0 classid 1:2 htb rate 255kbit burst 255kbit
tc filter add dev eth2 protocol ip parent 1:0 prio 1 u32 \
match ip dst 172.16.255.145 flowid...
2007 Jul 20
1
newbie needs policing help
...say newbie ;)
-----------------
#!/bin/sh
#
# policing parent
tc qdisc add dev eth0 handle ffff: ingress
#
# filter should slow tcp smtpd traffic to 64k max
tc filter add dev eth0 parent ffff: protocol ip prio 50 \
u32 match ip dport 0x25 0xFFFF match ip protocol 0x06 0xff \
police rate 55kbit burst 9k drop flowid :1
-----------------
...but I haven''t the slightest idea how to check up on it. e.g. with
iproute2 I could say "ip route list" to see what was in there, but how
can I check tc rules? "tc qdisk show" gives some cryptic output but "tc
filte...
2005 Nov 24
0
max latency with htb and wondershaper for voip and p2p
...s htb 1:1 : 9637 ( 77.096000 kbit/s) sent=305656509 :
Sent 305656509 bytes 1228041 pkts (dropped 0, overlimits 0 requeues 0)
rate 7480bit 29pps
lended: 400601 borrowed: 0 giants: 0
tokens: 116551 ctokens: 116551
class htb 1:10 parent 1:1 leaf 10: prio 0 rate 55Kbit ceil 110Kbit
burst 6Kb cburst 1612b
class htb 1:10 : 588 ( 4.704000 kbit/s) sent=28498626 :
Sent 28498626 bytes 489927 pkts (dropped 0, overlimits 0 requeues 0)
rate 715bit 12pps
lended: 489927 borrowed: 0 giants: 0
tokens: 907972 ctokens: 116551
class htb...
2003 Nov 13
1
HTB traffic shaping + squid cache proxy
...############
$TC qdisc add dev ppp0 root handle 1: htb default 20
$TC class add dev ppp0 parent 1: classid 1:1 htb rate 62Kbit burst 35k
$TC class add dev ppp0 parent 1:1 classid 1:10 htb rate 40Kbit ceil 60Kbit burst 25k prio 1
$TC class add dev ppp0 parent 1:1 classid 1:20 htb rate 15Kbit ceil 55Kbit burst 10k prio 2
$TC class add dev ppp0 parent 1:1 classid 1:30 htb rate 7Kbit ceil 28Kbit burst 5k prio 3
$TC qdisc add dev ppp0 parent 1:10 handle 10: sfq perturb 10
$TC qdisc add dev ppp0 parent 1:20 handle 20: sfq perturb 10
$TC qdisc add dev ppp0 parent 1:30 handle 30: sfq perturb 10
$TC fi...
2004 Oct 06
5
What is the reccomended minimum rate for leaf htb class for accurate operation?
Hi,
I''m trying to setup QoS in my TSL box. Following to mailing list reccomendations I changed PSCHED_CPU but can''t get accurate shaping with HTB. I have disabled HYSTERESIS also (by setting it to 0).
I have Intel Celeron 1.8Mhz (TSC supported I think).
******** My script ******
tc qdisc add dev eth0 root handle 1: htb default 22 r2q 10
# Class corresponding interface
2005 Jan 08
2
script
...############
$TC qdisc add dev eth1 root handle 1: htb default 20
$TC class add dev eth1 parent 1: classid 1:1 htb rate 62Kbit burst 35k
$TC class add dev eth1 parent 1:1 classid 1:10 htb rate 40Kbit ceil 60Kbit burst 25k prio 1
$TC class add dev eth1 parent 1:1 classid 1:20 htb rate 15Kbit ceil 55Kbit burst 10k prio 2
$TC class add dev eth1 parent 1:1 classid 1:30 htb rate 7Kbit ceil 28Kbit burst 5k prio 3
$TC qdisc add dev eth1 parent 1:10 handle 10: sfq perturb 10
$TC qdisc add dev eth1 parent 1:20 handle 20: sfq perturb 10
$TC qdisc add dev eth1 parent 1:30 handle 30: sfq perturb 10
$TC...