Displaying 8 results from an estimated 8 matches for "56kbit".
Did you mean:
256kbit
2004 Aug 18
0
HTB prio question
...o 1 quantum 20000
/sbin/tc qdisc add dev eth0 parent 1:5 handle 5: sfq perturb 10
/sbin/tc filter add dev eth0 parent 1:0 prio 1 protocol ip handle 5 fw
flowid 1:5
# Low Prio p2p class - This is only here for uses that get out of control
/sbin/tc class add dev eth0 parent 1:5 classid 1:53 htb rate 56kbit
ceil 56kbit prio 4 quantum 1501
/sbin/tc qdisc add dev eth0 parent 1:53 handle 5: sfq perturb 10
/sbin/tc filter add dev eth0 parent 1:0 prio 1 protocol ip handle 53
fw flowid 1:53
# Parent class for VL AU -> Retel
/sbin/tc class add dev eth0 parent 1:1 classid 1:3 htb rate 1536kbit
ceil 1536kb...
2003 Mar 12
3
Warnings with and without r2q
...10
tc class add dev eth0 parent 1: classid 1:1 htb rate 100mbit burst 2k
tc class add dev eth0 parent 1:1 classid 1:10 htb rate 80mbit ceil 100mbit
burst 2k
tc class add dev eth0 parent 1:1 classid 1:11 htb rate 128kbit burst 2k
tc class add dev eth0 parent 1:11 classid 1:21 htb rate 16kbit ceil 56kbit
burst 2k
tc class add dev eth0 parent 1:11 classid 1:22 htb rate 16kbit ceil 40kbit
burst 2k
tc class add dev eth0 parent 1:11 classid 1:23 htb rate 16kbit ceil 72kbit
burst 2k
tc class add dev eth0 parent 1:11 classid 1:24 htb rate 16kbit ceil 64kbit
burst 2k
tc class add dev eth0 parent 1:11 clas...
2004 Nov 29
2
Interesting oopses...
...$IFOUT parent 1:2 handle 20: htb default 100 r2q 1
$TC class add dev $IFOUT parent 20: classid 20:10 htb rate ${OUTBW}kbit
ceil ${OUTBW}kbit prio 0
$TC class add dev $IFOUT parent 20:10 classid 20:100 htb rate 60kbit
ceil 60kbit prio 0
$TC class add dev $IFOUT parent 20:10 classid 20:200 htb rate 56kbit
ceil ${OUTBW}kbit prio 1
$TC qdisc add dev $IFOUT parent 20:100 handle 100: pfifo limit 10
$TC qdisc add dev $IFOUT parent 20:200 handle 200: pfifo limit 10
# Build input rules
$TC qdisc add dev $IFIN root handle 1: prio bands 2 priomap 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1
$TC qdisc add dev $IFIN par...
2006 Mar 13
3
hfsc and dropped packets
...e 1: hfsc default 30
+ tc class add dev vlan1 parent 1: classid 1:1 hfsc ls rate 225kbit ul rate
225kbit
+ tc class add dev vlan1 parent 1:1 classid 1:10 hfsc rt m1 191kbit d 25ms
m2 135kbit ls rate 135kbit ul rate 225kbit
+ tc class add dev vlan1 parent 1:1 classid 1:20 hfsc rt m1 22kbit d 25ms m2
56kbit ls rate 56kbit ul rate 225kbit
+ tc class add dev vlan1 parent 1:1 classid 1:30 hfsc rt m1 11kbit d 25ms m2
22kbit ls rate 22kbit ul rate 225kbit
+ tc class add dev vlan1 parent 1:1 classid 1:40 hfsc rt m1 0kbit d 25ms m2
11kbit ls rate 11kbit ul rate 225kbit
+ tc filter add dev vlan1 parent 1: pri...
2004 Aug 06
1
Remote Telecasts?
...nd we also had a webcam uploading an image
> every minute. Again, no problems reported, no streams dropped.
we did a similar thing 2 years ago using an ISDN line (64k) on both ends.
both computers (studio & remote) connected to the same dialin-ISP and the
remote computer sent a live-stream (56kbit mono mp3) to the icecast-server
in the studio. on the same machine run mpg123 connected to this
stream, outputting it to the FM-emitter via the lineout of the
soundcard. we did not have any dropouts. the broadcast lasted 4 hours.
we also did it with normal modems at 24kbit mono mp3 using windows...
2003 May 29
3
T1-PRI deployment questions...
I am ordering T1-PRI service from local service provider and have a few
questions.
Is there framing and coding considerations (or is it all one standard), if
so what is best?
How are calls routed based on DIDs - are these just dtmf tones passed after
the call is picked up and treated as normal exten=> definitions?
John
This e-mail was scanned and found clean by Monroe-Woodbury CSD
2004 Aug 06
3
Remote Telecasts?
All --
Does anyone have experience doing remote live broadcasts over Icecast? My
thought is to use a Dell laptop running Windows (yeah, I know ;-), digitize
locally to 16khz, and pump the output to a remote Linux box.
Has anyone done something like this before? Thoughts? Issues?
Thanks,
Roy
--- >8 ----
List archives: http://www.xiph.org/archives/
icecast project homepage:
2004 Nov 24
14
traffic shaping on ftp server don''t work
...3 ppp0 0.0.0.0 all
/etc/shorewall/tcstart
#!/bin/bash
tc qdisc add dev ppp0 root handle 1: htb default 30
tc class add dev ppp0 parent 1: classid 1:1 htb rate 440kbit burst 15k
tc class add dev ppp0 parent 1:1 classid 1:10 htb rate 300kbit
tc class add dev ppp0 parent 1:1 classid 1:20 htb rate 56kbit
tc class add dev ppp0 parent 1:1 classid 1:30 htb rate 84kbit ceil 440kbit
tc filter add dev ppp0 protocol ip parent 1:0 handle 1 fw classid 1:10
tc filter add dev ppp0 protocol ip parent 1:0 handle 2 fw classid 1:20
tc filter add dev ppp0 protocol ip parent 1:0 handle 3 fw classid 1:30
all setti...