search for: 150kbit

Displaying 19 results from an estimated 19 matches for "150kbit".

Did you mean: 100kbit
2007 May 11
1
HTB and bursts
2007 May 26
14
big problem with HTB/CBQ and CPU for more than 1.700 customers
2003 Mar 16
6
[LONG] Weird problem with HTB using htb.init
...l eth0-2:30.low root@sentinel:/etc/sysconfig/htb# cat eth0 DEFAULT=30 R2Q=10 root@sentinel:/etc/sysconfig/htb# cat eth0-2.root # root class for outgoing traffic RATE=450Kbit #BURST=15k LEAF=sfq root@sentinel:/etc/sysconfig/htb# cat eth0-2\:10.high # class for outgoing high priority traffic RATE=150Kbit CEIL=prate #BURST=15k LEAF=sfq # HTTP RULE=*:80, # SSH RULE=*:22, # TELNET RULE=*:23, # SMTP RULE=*:25, # DNS RULE=*:53, # POP3 RULE=*:110, root@sentinel:/etc/sysconfig/htb# cat eth0-2\:20.normal # class for outgoing normal traffic RATE=150Kbit CEIL=prate # BURST=15k LEAF=sfq # IRC RULE=*:6667,...
2002 Oct 09
0
parent and hierarchy problems with cbq.init
...INT DEVICE=eth1,100Mbit,10Mbit RATE=100Mbit WEIGHT=10Mbit PRIO=5 RULE=10.200.200.0/24,10.0.0.0/8 #cbq-101.A DEVICE=eth1 RATE=200Kbit WEIGHT=20Kbit PRIO=5 RULE=10.21.0.0/24 #cbq-102.S/W DEVICE=eth1 RATE=200Kbit WEIGHT=20Kbit PRIO=5 RULE=10.22.0.0/16 RULE=10.20.0.0/16 #cbq-103.H/W DEVICE=eth1 RATE=150Kbit WEIGHT=15Kbit PRIO=5 RULE=10.21.4.0/24 #cbq-104.WC DEVICE=eth1 RATE=200Kbit WEIGHT=20Kbit PRIO=5 RULE=10.21.77.0/24 RULE=10.21.78.0/24 This rule running well :) The problem is...every time i try to make a hierarchical class (with parent), it is always failed configuration that i tried : #cbq-9...
2005 May 14
1
Strange HFSC behavior - bug? my misconfiguration/lack of knowledge?
...class add dev imq0 parent 1:1001 classid 1:1013 hfsc ls rate $uplink ul rate $uplink tc filter add dev imq0 parent 1:1001 protocol ip prio 3 u32 \ match ip src $inetaddr/32 \ flowid 1:1013 #lan users tc class add dev imq0 parent 1:1000 classid 1:1002 hfsc ls rate 150kbit ul rate 150kbit tc filter add dev imq0 parent 1: protocol ip prio 2 u32 \ match ip src $lanaddr.0/24 \ flowid 1:1002
2004 Jan 15
2
Fw: Re:simple(?!?) source routing
Hi, Thanks for the reply. Thats where the problem starts. If I set ppp0 as the default gw the internet doesnt work anymore. This is how im doing it... route del default route add default gw 217.32.81.74 dev ppp0 if I put it back to ppp1... route del default route add default gw 217.32.68.73 dev ppp1 It works fine again. Whats up with that? Cheers, Chris ----- Original Message
2005 Mar 11
3
strange behaviour of qos
...#root qdisc and class for eth1 $tc qdisc add dev eth1 root handle 1:0 htb default 19 $tc class add dev eth1 parent 1:0 classid 1:1 htp ratel ${CEIL_UP}kbit ceil ${CEIL_UP}kbit #classes, qdiscs and filters for services $tc class add dev eth1 parent 1:1 classid 1:11 htb rate 90kbit ceil 150kbit prio 0 $tc class add dev eth1 parent 1:1 classid 1:12 htb rate 100kbit ceil 250kbit prio 0 $tc class add dev eth1 parent 1:1 classid 1:13 htb rate 90kbit ceil 1250kbit prio 2 $tc qdisc add dev eth1 parent 1:11 handle 111: sfq perturb 10 # $tc qdisc add dev eth1 parent 1:11 handle 112...
2004 Jan 11
1
HTB rates aren''t enforced correctly
...te 1000kbit ceil 1000kbit cburst 1500 burst 50kb tc class add dev eth1 parent 1:1 classid 1:11 htb prio 0 rate 25kbit ceil 50kbit burst 10kbit tc class add dev eth1 parent 1:1 classid 1:12 htb prio 1 rate 400kbit ceil 1000kbit burst 10kb tc class add dev eth1 parent 1:1 classid 1:13 htb prio 1 rate 150kbit ceil 1000kbit burst 50kb tc class add dev eth1 parent 1:1 classid 1:14 htb prio 1 rate 400kbit ceil 1000kbit burst 10kb tc class add dev eth1 parent 1:1 classid 1:15 htb prio 2 rate 25kbit ceil 500kbit burst 10kb tc class add dev eth1 parent 1:12 classid 1:121 htb prio 1 rate 300kbit ceil 1000kbit...
2006 Jan 28
0
using tc on xen
...? I tried the below script to limit download on an interface however it didn''t seem to work. Still the interface is able to download at full speeds. 1. vm01 ==> is virtual interface ------------------------------------------------------------------------ #!/bin/sh TC=/sbin/tc DNLD=150Kbit # DOWNLOAD Limit DWEIGHT=15Kbit # DOWNLOAD Weight Factor $TC qdisc add dev vm01 root handle 11: cbq bandwidth 100Mbit avpkt 1000 mpu 64 $TC class add dev vm01 parent 11:0 classid 11:1 cbq rate $DNLD weight $DWEIGHT allot 1514 prio 1 avpkt 1000 bounded $TC filter add dev vm01 parent 11:0 protocol...
2004 Oct 17
0
Role of Application? How big?
...: #!/bin/bash tc qdisc add dev eth0 root handle 1: htb default 20 tc class add dev eth0 parent 1: classid 1:1 htb rate 800kbit burst 15k tc class add dev eth0 parent 1:1 classid 1:10 htb rate 650kbit ceil 110kbps burst 15k prio 0 tc class add dev eth0 parent 1:1 classid 1:20 htb rate 150kbit ceil 110kbps burst 6k prio 1 tc qdisc add dev eth0 parent 1:10 handle 10: sfq perturb 10 tc qdisc add dev eth0 parent 1:20 handle 20: sfq perturb 10 U32="tc filter add dev eth0 protocol ip parent 1:0 prio 0 u32" $U32 match ip sport 5001 0xffff match ip protocol 17 0xff flowi...
2004 Sep 20
0
Shaper & prio qdisc
...ter add dev eth0 protocol ip parent 1: prio 5 u32 match ip dport 20 0xffff flowid 1:3 .... and same for eth1. Now i need to add shapers for some client connecting from eth1 via vpn and gain real ip addresses (like 218.33.x.x) I think, it must looks like this: tc qdisc add dev ppp7 root tbf rate 150kbit buffer 1600 latency 10msec it''s shape outgoing traffic from client, right? But how to shape incoming traffic? I think, it must be class on eth0 with parent 1:1(tbf qdisc), but tbf is classless, so i need to replace it? For example, with htb. I have 2 questions: a) Which qdisc i should u...
2004 May 20
0
limit upstream/bandwidth.
Does anyone know a way to limit just the upload? I want to limit the bandwidth of a specific user. Ex:. 192.168.1.20 = 128kbit upstream 192.168.1.21 = 150kbit upstream . . . . . Thanks a lot. Critiano
2004 May 13
2
wondershaper.htb problem
...+ tc class add dev ppp0 parent 1: classid 1:1 htb rate 300kbit burst 6k RTNETLINK answers: No such file or directory + tc class add dev ppp0 parent 1:1 classid 1:10 htb rate 300kbit burst 6k prio 1 RTNETLINK answers: No such file or directory + tc class add dev ppp0 parent 1:1 classid 1:20 htb rate 150kbit ceil 80kbit burst 6k prio 2 and more lines similar to those ones. So most things go ok but I do not understand the RTNETLINK lines. Is that ok? I could not find an answer in google. I also see in dmsg this: HTB init, kernel part version 3.16 HTB: need tc/htb version 3 (minor is 16), you have 10...
2005 May 05
5
packet shaping bridge
Hi all, I''m new to using iproute2 for traffic shaping but not new to Linux. Essentially I have a WAN between two cities that I stream audio over for rebroadcast. Since it''s all done live stability and prioritization is critical in staying on air for our radio broadcasts. My WAN is 1.5Mbit PVC within my provider''s infrastructure so I have an unencrypted direct
2004 Oct 08
2
Excess Bandwidth
Hi, I''m trying to configure QoS on my linux in the following manner: I have a main link with 64K, so I divided it in 3 classes of 18K, 14K and 9K with an excess (not used for classified traffic, just to be shared) of 23K. This excess should be distributed proportonally among the 3 classes, that is, the class that has more rate should borrow more bandwidth. What is happening is
2005 Dec 22
2
strange tc filter behavior
...1: classid 1:1 htb prio 1 rate 500kbit ceil 500kbit # # default imq0 # $TC class add dev imq0 parent 1:1 classid 1:ffff htb prio 7 rate 50kbit ceil 100kbit $TC qdisc add dev imq0 parent 1:ffff handle ffff sfq perturb 10 # # ADMASTER # $TC class add dev imq0 parent 1:1 classid 1:10 htb prio 2 rate 150kbit ceil 500kbit $TC filter add dev imq0 protocol ip parent 1: prio 2 \ u32 \ match ip dport 1433 0xffff \ match u8 6 0xff at 9 \ flowid 1:10 $TC filter add dev imq0 protocol ip parent 1: prio 2 \ u32 \ match ip dport 1434 0xffff \ match u8 6 0xff at 9 \ flowid 1...
2004 Jul 30
3
notes&questions: filter, HTB, hfsc & tc binary,ifs tx ques
...dev'' listing (which part I presented) can explain how really filtering works in this situation? (a way how packets are directed into and from the classes?) I must decrease link throughput a bit to avoid latencies. Problem is that sometimes link is saturated at 170kbit, sometimes at 150kbit. That ppp link is on pppoa; max throughput is correlated with packet/s ratio, as i noticed (using iptraf). Am I right? How to deal with it? Using #ifconfig $iface txqueulen $n affects latency. What else (for e. dropping)? How to choose best value? Furthermore, couple of days ago I wondered abou...
2004 May 14
9
RV: LATENCY PROBLEMS
Hello there, I''m having lots of problems with my setup here. Let me explain: I am network administrator for my university dorm. We are about 300 users, and we have 2 ADSL connections doing load balancing with 300kbits upstream and 2Mbit downstream. The load balancing is working great, we are doing connection tracking so I can mark and hence prioritize interactive traffic and ACKS
2004 Nov 09
23
SEPARATING VOIP AND SURFING
Dear list: I have a problem I cannot handle yet, and need to solve it as soon as possible. Would be very greatful with anybody who can help me. I have a 512/512 link to internet, that I want to share between several computers. I have eth0, with a public IP address, conected to Internet, and also, eth1, with a private IP address, for network with the surfing computers. I have a main class with