]> git.ipfire.org Git - people/ms/ipfire-2.x.git/commitdiff
QoS: Increase queue size and quantum for fq_codel
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 2 Oct 2019 08:34:46 +0000 (08:34 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 2 Oct 2019 08:34:46 +0000 (08:34 +0000)
This optimises the QoS to process more bandwidth.

The limit variable sets the maximum number of packets in the
queue which was regularly exceeded on fast connections with
the old setting. This now allows up to 10G of data transfer
and is set to the default of fq_codel.

Quantum sets how many bytes can be read from the queue per
iteration. This is now set to the default again, which is
the size of an Ethernet frame including its header.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
config/qos/makeqosscripts.pl

index bc460db92b47caf4cd23601effa2af4dff54c664..b297a5c324a25849a0e61f1de13f3c474006c1ac 100644 (file)
@@ -58,7 +58,7 @@ my $subclassfile = "/var/ipfire/qos/subclasses";
 my $level7file = "/var/ipfire/qos/level7config";
 my $portfile = "/var/ipfire/qos/portconfig";
 my $tosfile = "/var/ipfire/qos/tosconfig";
-my $fqcodel_options = "limit 800 quantum 500";
+my $fqcodel_options = "limit 10240 quantum 1514";
 
 &General::readhash("${General::swroot}/ethernet/settings", \%netsettings);