Displaying 6 results from an estimated 6 matches for "14kbit".
Did you mean:
64kbit
2003 Jul 14
0
Why arent filteres working? (as I wanted)
...dev br0 protocol ip parent 1:0 prio 1 u32 match ip dst
57.227.233.3 flowid 1:21
tc qdisc add dev br0 parent 1:21 handle 200:0 sfq perturb 10
#non server queue
tc class add dev br0 parent 1:20 classid 1:22 htb rate 24kbit ceil 30kbit
#www queue
tc class add dev br0 parent 1:22 classid 1:25 htb rate 14kbit ceil 30kbit
tc filter add dev br0 protocol ip parent 1:0 prio 50 u32 match ip dst
57.227.233.0/27 match ip sport 3128 0xffff flowid 1:25
tc qdisc add dev br0 parent 1:25 handle 250:0 sfq perturb 10
#pop queue
tc class add dev br0 parent 1:22 classid 1:26 htb rate 6kbit ceil 30kbit
tc filter add de...
2003 Aug 17
1
stops receiving traffic
2004 Aug 07
11
Traffic shaping?
...192.168.0.161/32 tcp 7010:7010
Now, shouldnt this mark all packets to / from .161 to our little daemon on ports 7000:7010 with handle 20 and 21?
and here is my tcstart
run_tc qdisc add dev eth0 root handle 1: htb default 30
run_tc class add dev eth0 parent 1:1 classid 1:10 htb rate 14kbit ceil 38kbit burst 15k prio 1
run_tc filter add dev eth0 protocol ip parent 1:0 prio 1 handle 20 fw classid 1:10
run_tc filter add dev eth0 protocol ip parent 1:0 prio 1 handle 21 fw classid 1:10
curtain:/etc/shorewall#
Now, i pretty much thpught this would limit all traffic to/from those ports to...
2002 Sep 13
0
This simple ingress script blocks my traffic
Hi !
I have a 56k modem internet connection and I want to control
the BW of ftp downloads. But when I run the following script,
my downloads are simply stopped (and they resume if I clear the rules):
-----------------
#!/bin/sh
DEV=ppp0
DOWNLINK=14kbit
/sbin/ipchains -A input -i $DEV -p tcp -s 0/0 ftp-data -m 1
tc qdisc del dev $DEV root 2> /dev/null > /dev/null
tc qdisc del dev $DEV ingress 2> /dev/null > /dev/null
tc qdisc add dev $DEV handle ffff: ingress
tc filter add dev $DEV parent ffff: protocol ip prio 50 handle \
1 fw pol...
2003 Aug 24
2
Howto Graph throughput?
I have successfully implemented a QoS system using HTB on a 2Mb/s
leased line and it works very well, but I would like to be able to
graph the three pipes to see what they are doing, eg: using MRTG or
similar.
Has anyone any experience or examples of how to do this please?
Thanks,
Chris
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
2006 Sep 21
0
layer7 http
...http://l7-filter.sourceforge.net/protocols) but for me nothing is filtering in http class. Someone can help me ?
Here is my script :
#!/bin/bash
IPT_BIN=/sbin/iptables
TC_BIN=/sbin/tc
INTER_OUT=ppp0
LINK_RATE_UP=1000Kbit
RATE_ACK=200Kbit
RATE_DEFAULT=100Kbit
RATE_12=12Kbit
RATE_13=13Kbit
RATE_14=14Kbit
NB_filtre_12=1
NB_filtre_13=2
NB_filtre_14=4
PROTO_12_1=http
PROTO_13_1=skypeout
PROTO_13_2=skypetoskype
PROTO_14_1=edonkey
PROTO_14_2=gnutella
PROTO_14_3=applejuice
PROTO_14_4=bittorrent
# Delete all qdisc on $INTER_IN and $INTER_OUT
$TC_BIN qdisc del dev $INTER_IN root 2> /dev/null > /d...