-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update simplest_tbf.qos.help #167
base: master
Are you sure you want to change the base?
Conversation
It's not strictly speaking true that |
In the header of the script itself, it is explicitly stated that the script is an fq_codel script:
|
diogosena ***@***.***> writes:
> It's not strictly speaking true that `fq_codel` is the only supported qdisc; rather, `cake` is explicitly _not_ supported, so selecting that will cause a reset to `fq_codel`. So if we're updating the documentation it should be to say that cake is not supported...
In the header of the script itself, it is explicitly stated that the script is an fq_codel script:
```
# This is a single band fq_codel and ipv6 enabled shaping script for Ethernet
# gateways. This is nearly the simplest possible. With FQ_CODEL, the sparseness
```
Sure, but it is not actually *required*. And the script only enforces it
if cake is selected as the qdisc. You could run it with, say, sfq and
that would work just fine (not that I'd recommend that, of course!).
So we could write something like "It is recommended to use fq_codel as
the qdisc for this script; if selecting cake as the qdisc, fq_codel will
be automatically used instead."
|
maybe this? just trying to keep similar to other scripts help. "This script forces fq_codel usage if cake is selected as qdisc." |
Signed-off-by: diogosena <[email protected]>
diogosena ***@***.***> writes:
maybe this? just trying to keep similar to other scripts help.
"This script forces fq_codel usage if cake is selected as qdisc."
Sure, that works!
|
Clarify that fq_codel is mandatory when using this script.