search for: 608kbit

Displaying 2 results from an estimated 2 matches for "608kbit".

Did you mean: 600kbit
2003 Mar 24
0
no default leaf on HTB
...e bridge. I only want to manage traffic for network 10.0.0.0/29 and 10.0.0.8/29 and not manage the rest of the traffic for the /24 Here is my script: ###START OF SCRIPT### #create the qdisc tc qdisc add dev eth1 root handle 1: htb default 30 tc class add dev eth1 parent 1: classid 1:1 htb rate 608kbit ceil 608kbit prio 1 #create class for 10.0.0.0/29 tc class add dev eth1 parent 1:1 classid 1:10 htb rate 256kbit ceil \ 608kbit prio 3 tc filter add dev eth1 protocol ip parent 1:0 prio 1 u32 match ip \ dst 10.0.0.0/29 flowid 1:10 tc qdisc add dev eth1 parent 1:10 handle 10: sfq perturb 10 #crea...
2002 Feb 28
6
basic htb setup
...ic one in the howto: tc qdisc add dev eth0 handle 1: root htb default 11 tc class add dev eth0 parent 1: classid 1:1 htb rate 768kbit ceil 768kbit burst 15k tc class add dev eth0 parent 1:1 classid 1:10 htb rate 160kbit ceil 768kbit burst 15k tc class add dev eth0 parent 1:1 classid 1:11 htb rate 608kbit ceil 768kbit burst 15k tc qdisc add dev eth0 parent 1:10 handle 10: sfq perturb 10 tc qdisc add dev eth0 parent 1:11 handle 10: sfq perturb 10 tc filter add dev eth0 protocol ip parent 1:0 prio 1 u32 match ip src 1.2.3.1 flowid 1:10 When I start sucking a lot of data from 10.0.0.1 and 10.0.0.2...