Hi experts,
I have seen a configuration like this in a blog.
policy-map CBWFQ
class DNS
bandwidth percent 3
class DHCP
bandwidth percent 2
class TFTP
bandwidth percent 1
The weights associated with these traffic are:
DNS = 64 * 100 / 3 = 2133.33
DHCP = 64 * 100 / 2 = 3200
TFTP = 64 * 100 / 1 = 6400
If the interface bandwith is 96kbps. How it will be distributed between these 3 classes? Also, which traffic out of these 3 will be send first from software queue to tx-ring?
Krishna