[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: A question about default class creation
Hi Aditya,
with
tc qdisc add dev eth0 handle1: root cbq bandwidth 10Mbit avpkt 1000 mpu
64
you create a classful qdisc (cbq) which is able to organize classes i.e. you
can assign your packets to differnet classes.
In my opinion with
tc qdisc add dev eth0 handle 1: root
you create a default qdisc which is Priority FIFO.
If you can go with priority FIFO and don't need classes you can use the shorter
one.
Patrick