search for: 400kbit

Displaying 20 results from an estimated 36 matches for "400kbit".

Did you mean: 100kbit
2005 May 26
2
Random Early Detection
I''m streaming audio over a WAN that is 1.5Mbit/s. The audio has to go both ways and can be over tcp or udp. The manufacturers recommend udp as it has less overhead but has a higher chance of dropping out. The audio requires 130-200kbit/s in each direction for a combined 260-400kbit/s. I have two transparent bridges on either side of the WAN to do traffic control. I split it so that each bridge is capped at half of the total bandwidth allowed with some leeway for performance since most network traffic is one-sided in the exchange. ie: client at co-lo makes http request...
2005 May 21
1
newbie downloading not working
...obe sch_htb sch_prio sch_sfq cls_u32 echo -e "limiting download\n" echo -e " deleting qdisc \n" tc qdisc del dev eth0 root echo -e "adding HTB and SFP/PFIFO as leaves\n" tc qdisc add dev eth0 root handle 1:0 htb tc class add dev eth0 parent 1:0 classid 1:1 htb rate 400kbit ceil 400kbit tc class add dev eth0 parent 1:1 classid 1:20 htb rate 300kbit ceil 400kbit tc class add dev eth0 parent 1:1 classid 1:30 htb rate 10kbit ceil 400kbit tc class add dev eth0 parent 1:1 classid 1:40 htb rate 10kbit ceil 400kbit tc class add dev eth0 parent 1:1 classid 1:50 htb rate 1...
2004 Nov 18
5
burst question
This is one of my test classes: class htb 1:10 parent 1:1 prio 0 quantum 2048 rate 160Kbit ceil 400Kbit burst 1803b/8 mpu 0b cburst 2111b/8 mpu 0b level 0 Q1: where does "level 0" stand for? Q2: where does this b/8 stand for? Q3: this is on a i386 platform, so timer resolution should be 10mS. According to the doc the minimal burst should be 10mS*160Kbit=1600. Why is it 1803? Q4: I want...
2005 May 31
1
QoS and CLASSIFY
....20 # modprobe sch_htb sch_prio sch_sfq cls_u32 tc qdisc del dev eth0 root tc qdisc add dev eth0 root handle 1:0 htb tc class add dev eth0 parent 1:0 classid 1:1 htb rate 450kbit ceil 450kbit tc class add dev eth0 parent 1:1 classid 1:30 htb rate 80kbit ceil 400kbit tc class add dev eth0 parent 1:1 classid 1:40 htb rate 80kbit ceil 400kbit tc class add dev eth0 parent 1:1 classid 1:50 htb rate 80kbit ceil 400kbit tc class add dev eth0 parent 1:1 classid 1:60 htb rate 80kbit ceil 400kbit tc qdisc add dev eth0 parent 1:30 handle 30: sfq perturb 10 tc qdisc a...
2003 Oct 20
1
Equal bandwidth configuration among host with dummynet
Hi all, First of all, I have spent a lot of time reading up on it. Anyway, I live in a shared accomodation with 2 roommates and a landlord and we share a cable internet connection. It is 2Mbit/400Kbit connection. Sometimes when one of us is downloading a song through Kazaa or a new Linux or FreeBSD iso, the bandwidth gets hogged and other users can't get through. I was trying to configure dummynet using Fair Queues but I seem to be missing something. I tried to modify some of the examples o...
2004 Jan 11
1
HTB rates aren''t enforced correctly
...add dev eth1 root handle 1: htb default 122 tc class add dev eth1 parent 1: classid 1:1 htb rate 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 bu...
2012 Sep 27
2
Help
...ctive at a given time, install base in the millions. - Updates only when it really needs the list (e.g. the user opens the 'Internet streams' dialogue) - When it needs the list it doesn't update more often than every e.g. 60min - Uses RFC2616 compliant compression 30 requests per hour, 400kbit/s effective bandwidth usage. (Those numbers are actually educated guesses based on real usage statistics of dir.xiph.org) Thanks for listening, Thomas
2005 Jun 01
3
HTB on loopback gives a bit rate multiplied by 8
...ol ip parent 1:0 prio 0 u32 match ip dport 22 0xffff flowid 1:11 When this script is applied across eth0 (when I do a sftp to another machine) the bandwidth limitation is applied correctly. However if I use this in loopback (sftp to another directory in the same machine) then I get bit rate approx 400kbit - i.e. usually it roughly multiplies the bit rate by 8. Why does this happen? Does HTB work differently in loopback? Any clue regarding this would be mostl helpful. Thanks Kiruthika
2006 Jun 02
1
IMQ + NAT
...imq0 unnnated in/out traffic that I could make priorities for protocols and networks. Do somthing like this: prate=1Mbit localhost: rate=500kbit, ceil=prate vnc: rate=100kbit, ceil=prate web: rate=100kbit, ceilp=prate mail: rate=100kbit, ceil=prate eth1: rate=400kbit, ceil=prate ftp: rate=10kbit, ceil=prate .... eth2..4: rate=100kbit, ceil=prate (eth2...eth4 would split the same 100kbit) rdp: rate=90kbit, ceil=prate ...... This load balance would be applyed for outgoing and incoming internet traffic. Where...
2006 Jan 23
0
HFSC Two piece service curve questions
...piece-wise linear service curve. My goal is to separate audio streams from bulk traffic. To keep it simple a use two classes one high priority realtime and the other for the rest. Example: tc qdisc add dev ppp0 root handle 1: hfsc default 11 tc class add dev ppp0 parent 1: classid 1:1 hfsc rt m1 400kbit d 30ms m2 100kbit ls rate 100kbit ul rate 500kbit tc class add dev ppp0 parent 1: classid 1:11 hfsc ls rate 400kbit ul rate 500kbit [filter...] As I understand it the first piece (high slope) of the service curve in class 1:1 effects the first deadline of packets in the class. It shortens the ti...
2004 Mar 15
1
cbq init query
...ually tried using bounded yet, I will asap, however from what I understand it only applies to classes? I simply have 2 cbq files, cbq-1200.internal, and cbq-1200.external, both of which are identical except one says eth1 instead of eth0. Within each file I have : DEVICE=eth1,10Mbit,1Mbit RATE=400Kbit WEIGHT=40Kbit RULE=192.168.9.113 RULE=192.168.9.114 with A rule line for each IP going until x.x.x.133 From what I have been reading, would I have to have a sepearte class file for each ip I want to limit? At present if both 113 and 114 try to download they get around 25KB/s each..., when I a...
2003 Dec 03
12
$100 USD to the first person that can provide the rules/scripts that will solve the QOS latency & bandwidth allocation issue !!!!
To stress the urgency and importance of my questions, I am willing to pay $100 to the first person that can provide me with the scripts/ rules that will work in my SnapGear firewalls that will solve the problems I am having. Please see the following post: Linux QOS and prioritization of real-time data (RTP/VoIP) Thank you!
2005 Apr 07
5
question about correct way of shapping
...---------------------eth1 -Linux Qos- eth0 ------ LAN ---> down 450k If I want "shape" traffic to my LAN ( sharing equally download for all users) I have to insert a rule like this tc qdisc add dev eth0 root handle 1:0 htb tc class add dev eth0 parent 1:0 classid 1:1 htb rate 400kbit and ....other rules and If I want "shape" traffic to Internet ( not allowing a single user to destroy upload) I have to insert a rule like this: tc qdisc add dev eth1 root handle 1:0 htb tc class add dev eth1 parent 1:0 classid 1:1 htb rate 100kbit and ...other rules Is it correct?? o...
2004 May 03
1
htb bandwith
...kbit tc class add dev eth0 parent 1:2 classid 1:22 htb rate 300Kbit ceil 2000kbit tc class add dev eth0 parent 1:2 classid 1:23 htb rate 200Kbit ceil 2000kbit tc class add dev eth0 parent 1:2 classid 1:24 htb rate 100Kbit ceil 2000kbit tc class add dev eth0 parent 1:3 classid 1:31 htb rate 400Kbit ceil 2000kbit tc class add dev eth0 parent 1:3 classid 1:32 htb rate 300Kbit ceil 2000kbit tc class add dev eth0 parent 1:3 classid 1:33 htb rate 100Kbit ceil 2000kbit By using this script, the class 1: 2 can it borrow of the bandwidth not used by the class 1: 3 (the classes 1:2 and 1:3 can...
2019 Nov 28
2
PJSIP device_state_busy_at, how does this work?
...n busy if this number is reached. We have PBX Trunks registering to the Asterisk. So we want to limit the number of concurrent calls to a PBX and return busy, if more than the configured number of channels are in use. I set for example: device_state_busy_at=4 to limit the trunk to 4 channels so 400kbit/s can be assured by QOS measure. But when testing, I noticed caller don't get busy. pjsip show endpoints happily shows 5 of 4 channels in use. Do I have to query the device state from the dialplan and manually return busy? Mit freundlichen Grüssen -Benoît Panizzon- -- I m p r o W a r e...
2007 Mar 15
3
Traffic Shaping over Satellite Internet
...2048 kbit downlink. I''m classifying internet related traffic using iptables marking. bri0 is my local lan bridge, receiving egress traffic destined for subscribers. tc qdisc add dev bri0 root handle 1: htb default 2 tc class add dev bri0 parent 1: classid 1:1 htb rate 92129kbit ceil 102400kbit tc class add dev bri0 parent 1:1 classid 1:2 htb rate 90072kbit ceil 92129kbit tc class add dev bri0 parent 1:1 classid 1:3 htb rate 2048kbit ceil 92129kbit # Non-Internet Local Lan Traffic tc qdisc add dev bri0 parent 1:2 handle 2: sfq perturb 10 # Internet Traffic tc class add dev bri0 parent 1:3...
2005 Jul 06
1
HFSC default upper-limit trouble
...39;m having such problem with HFSC with following config: + tc qdisc del dev eth3 root + tc qdisc add dev eth3 root handle 1: hfsc default 2 + tc class add dev eth3 parent 1: classid 1:1 hfsc ls rate 512kbit ul rate 512kbit + tc class add dev eth3 parent 1:1 classid 1:2 hfsc ls rate 2kbit ul rate 400kbit + tc class add dev eth3 parent 1:1 classid 1:3 hfsc ls rate 32kbit ul rate 32kbit + tc class add dev eth3 parent 1:1 classid 1:4 hfsc ls rate 300kbit ul rate 300kbit Let''s say i start to upload thru 1:3. the upper-limit applies, traffic doesn''t do up more than 4kb/s. The 1:4 i...
2005 May 10
1
Help with PRIO qdisc and filters
...lem sharing DSL upstream bandwidth with users. I have 3 types of traffic high-priority, medium-priority and low priority. My upstream rate is 960kbits. Traffic (any priority) can vary in bandwidth from 0 to 960kbits. I have a test setup where I can pump 600kbit of high priority sustained and I have 400kbit of low priority traffic sustained. I expect after the 600kbit high-priority traffic, the remaining 360kbit should be allocated to the medium and low priority. Since I do not have medium-priority everything should go to low-priority traffic. However, I do not see that behavior with the following tc...
2007 Oct 24
1
Low-priority traffic
...0% = 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 hope my explanation is clear. Wondershaper does not seem to do this. In fact, when I start downloading A and B, they seem to equally distribute the available bandwidth (I verified that packets really go to the respective classes, so it''s not a filter problem). It''s not cle...
2005 Jun 22
1
Problem with HTB and IPTABLES
...to the right class queue… all them goes to the default htb queue. Could some one give me some tips? tc qdisc add dev eth1 root handle 1: htb default 13 tc class add dev eth1 parent 1: classid 1:1 htb rate 1Mbit ceil 1Mbit tc class add dev eth1 parent 1:1 classid 1:10 htb rate 400kbit ceil 600kbit prio 0 tc class add dev eth1 parent 1:1 classid 1:11 htb rate 300kbit ceil 800kbit prio 1 tc class add dev eth1 parent 1:1 classid 1:12 htb rate 200kbit ceil 700kbit prio 2 tc class add dev eth1 parent 1:1 classid 1:13 htb rate 100kbit ceil 600kbit prio 2 tc qdisc add dev eth1 p...