Displaying 4 results from an estimated 4 matches for "15000kbit".
Did you mean:
1000kbit
2007 Sep 25
2
incoming traffic
...t :
tc qdisc add dev eth0 handle ffff: ingress
tc filter add dev eth0 parent ffff: protocol ip prio 1 u32 match ip src
138.96.20.0 police index 1 rate 20000kbit burst 20000kbit drop flowid :1
tc filter add dev eth0 parent ffff:1 protocol ip prio 1 u32 match ip src
138.96.20.23 police index 2 rate 15000kbit burst 15000kbit drop flowid :2
tc filter add dev eth0 parent ffff:1 protocol ip prio 1 u32 match ip src
138.96.20.10 police index 3 rate 10000kbit burst 10000kbit drop flowid :3
The main goal is to limit incoming traffic from 138.96.20.23 to 15000kbit
and the incoming traffic from 138.96.20.10 to...
2006 Jan 08
2
HTB - not borrowing, not exceeding rate
...ot;
Internet access is priority over local traffic).
Here is current setup:
tc qdisc del root dev eth2.24 2>/dev/null
tc qdisc add root dev eth2.24 handle 1: htb default 1
# main rate limitation for whole connection (802.11a radio link)
tc class add dev eth2.24 parent 1: classid 1:1 htb rate 15000kbit ceil
15000kbit burst 10kbit
# class for internet connections - this one can use nearly whole link
tc class add dev eth2.24 parent 1:1 classid 1:6667 htb rate 12000kbit ceil
13500kbit burst 100kbit
# class for in-network p2p connections - this one has lower guaranteed rate
tc class add dev eth2....
2007 Feb 28
4
incoming traffic + iptable
Hello,
i try to use iptables to mark packet and then to filter them with tc. Here
is my script:
iptables -t mangle -A PREROUTING -s 172.28.54.41/32 -p tcp -j MARK
--set-mark 1
tc qdisc add dev eth0 handle ffff: ingress
tc filter add dev eth0 parent ffff: protocol ip prio 1 handle 1 fw police
rate 10000kbit burst 10000kbit mtu 1500k drop flowid :1
I can not use u32 because i have several
2006 Dec 05
1
Bridge HFSC QOS questions ...
Hello,
I''ve got somes questions about Bridge and QOS ...
I''ve got a serveur with 2 interfaces eth0,eth1 inside br0 bridge ...
nothing of special ...
If I understand all, normally I should configure TC class and qdisc on
each physical or use ebtables to manage packets on output ... right ?
I''ve attached my qos_script that hsfc and layer7 module. I use only
Iptables