search for: 127kbps

Displaying 2 results from an estimated 2 matches for "127kbps".

Did you mean: 107kbps
2004 Oct 10
3
How to invert tc matches?
Hi, I want to use inverted matches with tc-filter. I tried to invert the matches with a "!", but this doesn''t seem to be the correct syntax. The following rules don''t work: ---------------------------snip----------------------------------------- $TC filter $ACTION dev $DEV protocol ip parent 1:0 u32 match ip src ${NETWORK[$i]} !match ip dst 192.168.0.0/24 flowid
2004 Oct 13
5
Re: Is this actually possible?
...htb default 30 >tc class add dev eth1 parent 1: classid 1:1 htb rate 96mbit burst 15k >tc class add dev eth1 parent 1: classid 1:7 htb rate 128kbps burst 15k >tc class add dev eth1 parent 1:1 classid 1:10 htb rate 96mbit burst 15k >tc class add dev eth1 parent 1:7 classid 1:20 htb rate 127kbps ceil 128kbps > burst 15k prio 0 >tc class add dev eth1 parent 1:7 classid 1:30 htb rate 1kbps ceil 128kbps > burst 1k prio 2 >tc qdisc add dev eth1 parent 1:10 handle 10: sfq perturb 10 >tc qdisc add dev eth1 parent 1:20 handle 20: sfq perturb 10 >tc qdisc add dev eth1 parent 1...