search for: ifb10

Displaying 1 result from an estimated 1 matches for "ifb10".

Did you mean: ifb0
2006 Sep 07
1
Rate limits whithin rate limits
.../sh # Load kernel modules modprobe ifb numifbs=1000 modprobe act_mirred # set up raw queuing discipline on ports. tc qdisc add dev eth0.10 root handle 1:0 cbq bandwidth 100Mbit avpkt 1000 cell 8 tc qdisc add dev eth1.10 root handle 1:0 cbq bandwidth 100Mbit avpkt 1000 cell 8 # bring up IFB ifconfig ifb10 up # Add queuing disciplines to IFB # Raw qdisc first. tc qdisc add dev ifb10 root handle 1:0 cbq bandwidth 100Mbit avpkt 1000 cell 8 # Now add the rate limit tc class add dev ifb10 parent 1:0 classid 1:1 cbq bandwidth 100Mbit rate 512Kbit weight 51Kbit prio 5 allot 1514 cell 8 maxburst 20 avpkt 10...