Does quality of service (QoS) reduce the bandwidth that is available to “bulk” traffic?

0

If I enable quality of service (QoS) on my DD-WRT router, if there is no "preferred" traffic over the connection at a given time, will the “bulk” traffic still be limited?

rinogo

Posted 2015-02-18T20:11:37.680

Reputation: 135

1I don't know DD-WRT well enough to answer authoritatively, but I'll say this: It would be a really crappy QoS implementation if it limited the bandwidth of any class of service when there's no congestion. – Spiff – 2015-02-18T20:52:09.200

Answers

2

DD-WRT as far as I know uses standard Linux tc (traffic control) commands—See DD-WRT Wiki—and as a result only kicks in if you have network congestion.

See Linux Traffic control overview for tc concepts. tc is often used in simulating congested networks (for example in WANEM, a wide area network emulator. Very useful if you want to emulate low bandwidth in your 10GE lab).

Once your network connection gets congested, it will guarantee resources for configured higher priority traffic.

Axel Engeland

Posted 2015-02-18T20:11:37.680

Reputation: 36