diff options
| author | Stijn Tintel | 2022-03-04 15:43:51 +0000 |
|---|---|---|
| committer | Stijn Tintel | 2022-03-04 18:22:49 +0000 |
| commit | 74cfd71531446440b70639f2290f510a529deaa6 (patch) | |
| tree | f4faf6abd19040479e72602074f2dc2bb3ade35a | |
| parent | 65b42032063f75d8efc37cdb7215a04818be2fa7 (diff) | |
| download | qosify-74cfd71531446440b70639f2290f510a529deaa6.tar.gz | |
interface: disable autorate-ingress by default
Enabling autorate-ingress on a mostly idle host seems to result in the
ingress rate being lowered until traffic is barely possible at all.
Disable autorate-ingress by default to avoid people running into this
problem without explicitly enabling it.
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
Acked-by: Felix Fietkau <nbd@nbd.name>
| -rw-r--r-- | interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interface.c b/interface.c index 5c2dfe8..4d53b00 100644 --- a/interface.c +++ b/interface.c @@ -149,7 +149,7 @@ iface_config_set(struct qosify_iface *iface, struct blob_attr *attr) cfg->ingress = true; cfg->egress = true; cfg->host_isolate = true; - cfg->autorate_ingress = true; + cfg->autorate_ingress = false; cfg->nat = !iface->device; if ((cur = tb[IFACE_ATTR_BW_UP]) != NULL) |