search for: 900kbit

Displaying 17 results from an estimated 17 matches for "900kbit".

Did you mean: 100kbit
2006 Jan 10
8
Simple shaping question
...ted to dsl. I want to set priorities for protocols (that nothing could disturb web browsing). This is my rules (eth0 connected to internet): /sbin/tc qdisc del dev eth0 root /sbin/tc qdisc add dev eth0 root handle 1 htb default 30 r2q 100 /sbin/tc class add dev eth0 parent 1: classid 1:2 htb rate 900Kbit burst 15k /sbin/tc class add dev eth0 parent 1:2 classid 1:10 htb rate 900Kbit ceil 900Kbit /sbin/tc filter add dev eth0 parent 1:0 protocol ip prio 100 u32 match ip sport 80 0xffff classid 1:10 /sbin/tc filter add dev eth0 parent 1:0 protocol ip prio 100 u32 match ip dport 80 0xffff classid 1:10...
2005 Feb 16
6
Re: Bandwith Control with a firewall/bridge
>Miguel Ángel Domínguez Durán wrote: >> Hello again, >> First, excuse me for my poor english. >> I''m trying now to make bandwith control in a firewall machine running >> Shorewall. This machine is also a bridge using bridge-utils >> bridge-utils-devel. It is a mandrake 10. The configuration is something >> like >> this: >> >>
2005 May 26
2
Random Early Detection
...m away) #!/bin/bash DEV0=eth0 DEV1=eth1 tc qdisc del root dev $DEV0 2> /dev/null tc qdisc del root dev $DEV1 2> /dev/null sleep 2 tc qdisc add dev $DEV0 root handle 1: htb default 20 tc qdisc add dev $DEV1 root handle 2: htb default 20 tc class add dev $DEV0 parent 1: classid 1:1 htb rate 900kbit ceil 900kbit tc class add dev $DEV1 parent 2: classid 2:1 htb rate 900kbit ceil 900kbit # audio tc class add dev $DEV0 parent 1:1 classid 1:10 htb prio 0 rate 200kbit tc class add dev $DEV1 parent 2:1 classid 2:10 htb prio 0 rate 200kbit # everything else tc class add dev $DEV0 parent 1:1 classid...
2006 Nov 15
7
Shaping incoming VoIP traffic fails
Hello, I''m trying to get lossless VoIP traffic over my 3000k/500k ADSL line. Shaping outgoing traffic is no problem: I set total ceil for outgiong device (ppp0) to 450kbit and put VoIP into highest prio class. Even during full upload the voice is clean on the other end. Now I tried to get the same result for incoming data. I attached HTB to eth1 where the incoming voip traffic is
2004 May 19
2
SFQ latency
...fq qdisc adds latency compared to pfifo? With "sfq perturb 10" ping latency is around 100-120ms, while with "pfifo limit 3" drops to ~10-30ms (qdiscs belong to htb class). I''m missing something or is this expected? { $TC_CLASS parent 1:1 classid 1:20 htb prio 0 rate 900kbit ceil 1000kbit burst 7k $TC_QDISC parent 1:20 handle 200: {pfifo limit 3} | {sfq perturb 10} } _______________________________________________ LARTC mailing list / LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
2005 Feb 10
5
priorizing vlans in a bridge
Hi, this is my Linux Box ---------------------------- LAN 1 -----|--eth1 <---br1--->eth0.1 | | \ | | eth0--|----- 802.1q tagged 1 Mbps link | / | LAN 2 -----|--eth2 <---br2--->eth0.2 | ---------------------------- I have to bridge the 2 lans
2004 Jun 28
1
IMQ htb question
...lowing (like in the classic htb examples from lartc) and it worked: tc qdisc add dev imq0 handle 1: root htb default 99 tc class add dev imq0 parent 1: classid 1:1 htb rate 1mbit tc class add dev imq0 parent 1:1 classid 1:10 htb rate 100kbit tc class add dev imq0 parent 1:1 classid 1:99 htb rate 900kbit tc qdisc add dev imq0 parent 1:10 handle 100 sfq perturb 10 tc qdiisc add dev imq0 parent 1:99 handle 9 sfq perturb 10 Can someone help me understand the first example and why would someone create a root qdisc that redirects all traffic to a class and then instead of attaching child classes to...
2007 Oct 24
1
Low-priority traffic
...downloading B. I begin downloading it a 1Mbit/s. 2) I then start download A while B is going. A''s download totally steals traffic from B''s download, up to its minimum rate. So, after a little while, I should see download B going to 10% = 100Kbit and download A going to 90% = 900Kbit. 3) I stop download B. A goes up to 1Mbit. 4) I apply a client-side limit to A''s download. Now A goes to 600Kbit. 5) I start downloading B again. B cannot steal any bandwidth to A, but it will get all the available bandwidth. So A will stay at 600Kbit, and B will go at 400Kbit. I...
2004 Jul 20
3
Fw: HTB - Really Big problem
...is no ping at all for about 1min and it starts pinging for about 2-3min and it stops for 1-2min and so on..... When I stop HTB ping starts. It''s look like HTB is filled to much(sorry for my english :/) All my children classes rate doesn''t exceeds root classes. I have 50 classes on 900kbit-10kbit(for default class) - downstream and 800-10kbit(for default) up. I shape bandwidth matching ip. r2q is set to 1 . no erros during doing shape script. I''m attaching this script in ip1 ip2 and so on are files where are written ip''s for C classes. I''m including my...
2004 May 09
3
prerouting does not effect filtering
...15k >/usr/sbin/tc class add dev eth1 parent 1:1 classid 1:10 htb rate 152kbit ceil 152kbit burst 2k prio 1 >/usr/sbin/tc class add dev eth1 parent 1:1 classid 1:20 htb rate 950kbit ceil 1808kbit burst 15k prio 5 >/usr/sbin/tc class add dev eth1 parent 1:1 classid 1:30 htb rate 646kbit ceil 900kbit burst 15k prio 10 >/usr/sbin/tc class add dev eth1 parent 1:1 classid 1:40 htb rate 133kbit ceil 152kbit burst 15k prio 15 >/usr/sbin/tc qdisc add dev eth1 parent 1:10 handle 10: sfq perturb 10 >/usr/sbin/tc qdisc add dev eth1 parent 1:20 handle 20: sfq perturb 10 >/usr/sbin/tc qdisc ad...
2006 Jul 30
5
questions about HFSC, VoIP and (dynamic) ingress shaping
...voip communication I added an HFSC qdisc to device ppp0 (1 Mbit SDSL). There are two classes (by now): One for SIP and RTP and one for the rest. Question 1: I defined the voip qdisc as tc class add dev ppp0 parent 1:1 classid 1:11 \ hfsc sc umax 1500b dmax 30ms rate 500kbit ul rate 900kbit but "tc -s class show dev ppp0" shows class hfsc 1:11 parent 1:1 sc m1 0bit d 6.0ms m2 500000bit \ ul m1 0bit d 0us m2 900000bit Where does the "0bit d 6.0ms" come from, (what does the other stuff exactly mean) and what would be a good setting for voip traffic? T...
2005 Feb 03
0
Kernel panic when using wrr qd
...V_IN} parent 1:0 classid 1:10 htb rate 1000kbit burst 1kbit prio 1 tc qdisc add dev ${DEV_IN} parent 1:10 handle 10: htb default 190 tc class add dev ${DEV_IN} parent 10: classid 10:10 htb rate 1000kbit burst 20kbit prio 1 tc class add dev ${DEV_IN} parent 10:10 classid 10:190 htb rate 500kbit ceil 900kbit burst 10k prio tc qdisc add dev ${DEV_IN} parent 10:190 handle 190: wrr dest ip $WRR_MAX_CLASSES 0 ###tc qdisc add dev ${DEV_IN} parent 10:190 handle 190:0 esfq perturb 10 limit 64 depth 64 divisor 11 echo "IMQ dev 0 start" /sbin/iptables -F -t mangle /sbin/iptables -A PREROUTING -t mang...
2006 Aug 21
1
tc filter don''t match packets
Hi, I have problem with this simple script: #!/bin/bash if [ "$1" == "del" ]; then tc qdisc del dev eth0 root handle 1: htb default 10 exit fi tc qdisc add dev eth0 root handle 1: htb default 10 tc class add dev eth0 parent 1: classid 1:1 htb rate 800kbit ceil 900kbit tc class add dev eth0 parent 1:1 classid 1:10 htb rate 300kbit ceil 600kbit tc class add dev eth0 parent 1:1 classid 1:11 htb rate 100kbit ceil 800kbit tc qdisc add dev eth0 parent 1:11 handle 11: pfifo limit 5 tc filter add dev eth0 parent 1:11 protocol ip prio 1 u32 match ip dport 80 0xffff flowi...
2005 Oct 04
2
Hardware vs. Network Inputs
We are trying to determine how to build out an IVR system we are working on. The system needs to be able to handle probably at most 5-10 concurrent calls at peak times. Other times we are just looking for a reliable service. For incoming calls we've been using BroadVoice VOIP and before that VoicePulse VOIP. VoicePulse's IAX service started dropping DTMF inputs that we were processing
2004 Jul 28
3
Re: Re: HTB 3.13 please help
...It''s look like HTB is filled to > > much(sorry > > > > for > > > > > > my english :/) > > > > > > All my children classes rate doesn''t exceeds root classes. I have 50 > > > > classes > > > > > > on 900kbit-10kbit(for default class) - downstream and 800-10kbit(for > > > > > > default) up. > > > > > > I shape bandwidth matching ip. r2q is set to 1 . no erros during > > doing > > > > shape > > > > > > script. > > > > &g...
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
2007 Mar 22
8
Shape own router
On 2/19/07, Salatiel Filho <salatiel.filho@gmail.com> wrote: > Well , thanks to imq all my client machines are now shaped and > everything is great ... > But now i have a doubt , is there a way to shape the traffic that goes > to the route [doing a wget from the router for example ]? > > > I have a PREROUTING IMQ0 and a POSTROUTING IMQ1 , everything is > working like