Celeron J3160 capabilities with QoS

I think the bottleneck is now “Cake” I have done some Tests with the IPFire ECO and they can only Route 190mBIT with enabled QoS.

I have switched back to fq_codel and it can hande 650mBit

Please test by editing /var/ipfire/bin/makeqosscripts.pl

--- makeqosscripts.pl.org	2024-04-30 09:33:20.626373902 +0200
+++ makeqosscripts.pl	2024-05-01 10:50:15.897666665 +0200
@@ -209,7 +209,7 @@
 	if ($qossettings{'RED_DEV'} eq $classline[0]) {
 		$qossettings{'DEVICE'} = $classline[0];
 		$qossettings{'CLASS'} = $classline[1];
-		print "\ttc qdisc add dev $qossettings{'DEVICE'} parent 1:$qossettings{'CLASS'} handle $qossettings{'CLASS'}: cake @cake_options\n";
+		print "\ttc qdisc add dev $qossettings{'DEVICE'} parent 1:$qossettings{'CLASS'} handle $qossettings{'CLASS'}: fq_codel limit 10240 quantum 1514\n";
 	}
 }
 print "\n\t### FILTER TRAFFIC INTO CLASSES\n";
@@ -380,7 +380,7 @@
 	if ($qossettings{'IMQ_DEV'} eq $classline[0]) {
 		$qossettings{'DEVICE'} = $classline[0];
 		$qossettings{'CLASS'} = $classline[1];
-		print "\ttc qdisc add dev $qossettings{'DEVICE'} parent 2:$qossettings{'CLASS'} handle $qossettings{'CLASS'}: cake @cake_options\n";
+		print "\ttc qdisc add dev $qossettings{'DEVICE'} parent 2:$qossettings{'CLASS'} handle $qossettings{'CLASS'}: fq_codel limit 10240 quantum 1514\n";
 	}
 }
 print "\n\t### FILTER TRAFFIC INTO CLASSES\n";

After this change disable and reenable QoS to regenerate the script.

4 Likes