search for: 54kbit

Displaying 5 results from an estimated 5 matches for "54kbit".

Did you mean: 64kbit
2005 Nov 01
0
HTB, rate and ceil question
...has it bandwith limited to 10kbits if there is other traffic to this location, otherwise it can use up to 54 kbits. tc qdisc add dev eth0 root handle 1: htb ... tc class add dev eth0 parent 1: classid 1:1640 htb rate 64kbit tc class add dev eth0 parent 1:1640 classid 1:1641 htb rate 10kbit ceil 54kbit tc class add dev eth0 parent 1:1640 classid 1:1642 htb rate 54kbit ceil 64kbit tc filter add dev eth0 protocol ip parent 1:0 prio 5 u32 match ip src 10.200.0.86 match ip dst 10.205.86.0/24 flowid 1:1641 tc filter add dev eth0 protocol ip parent 1:0 prio 5 u32 match ip dst 10.205.86.0/24 flowid 1:1...
2004 Aug 06
2
how much horsepower will i need for streaming?
...putting together a streaming relay network for the linux audio developer's conference #2 (http://www.zkm.de/lad), and i was wondering how much cpu power will be required on the master server. we need to record 2 48k stereo signals simultaneously and encode them into three streams each: 2x 54kbit/s 22k05 mono 2x 112kbit/s 48k stereo 2x 192kbit/s 48k stereo it would be very nice if the same box could handle the streaming to between 5 and 8 relay servers, so that we have only one single point of failure. how much cpu and memory do you think we'll need to be on the *very safe* side ?...
2004 May 22
6
MARK causes high CPU usage / using tc in conjunction with MASQ
...v eth0 root handle 1: cbq bandwidth 100Mbit avpkt 1000 cell 8 tc qdisc add dev eth1 root handle 1: cbq bandwidth 100Mbit avpkt 1000 cell 8 ### Classful qdisc upload/download rate for a group of IP address ### tc class add dev eth0 parent 1:0 classid 1:11 cbq bandwidth 100Mbit rate 100Mbit weight 54Kbit prio 8 allot 1514 cell 8 maxburst 20 av pkt 1000 tc qdisc add dev eth0 parent 1:11 tbf rate 2048Kbit buffer 10Kb/8 limit 15Kb mtu 1500 tc class add dev eth1 parent 1:0 classid 1:11 cbq bandwidth 100Mbit rate 100Mbit weight 54Kbit prio 8 allot 1514 cell 8 maxburst 20 av pkt 1000 tc qdisc add dev...
2004 Aug 06
0
how much horsepower will i need for streaming?
...network for the linux audio > developer's conference #2 (http://www.zkm.de/lad), and i was wondering > how much cpu power will be required on the master server. > > we need to record 2 48k stereo signals simultaneously and encode them > into three streams each: > > 2x 54kbit/s 22k05 mono > 2x 112kbit/s 48k stereo > 2x 192kbit/s 48k stereo > > it would be very nice if the same box could handle the streaming to > between 5 and 8 relay servers, so that we have only one single point of > failure. > > how much cpu and memory do you think we'l...
2004 Jan 20
1
htb+beginner+error
...ble bandwidth # if no other classes are in use. tc class add dev $DEV parent 1:1 classid 1:20 htb rate ${RATEUP}kbit ceil ${RATEUP}kbit prio 0 tc class add dev $DEV parent 1:1 classid 1:21 htb rate 192kbit ceil 256kbit prio 1 tc class add dev $DEV parent 1:1 classid 1:22 htb rate 54kbit ceil 256kbit prio 2 tc class add dev $DEV parent 1:1 classid 1:23 htb rate 10kbit ceil 256kbit prio 3 # attach qdisc to leaf classes - here we at SFQ to each priority class. SFQ insures that # within each class connections will be treated (almost) fairly. tc qdisc a...