From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [RFC PATCH 7/8] network-aqm: Use "conservative" setting for all PPP connections Date: Thu, 02 Dec 2021 12:37:47 +0000 Message-ID: <20211202123748.2525617-7-michael.tremer@ipfire.org> In-Reply-To: <20211202123748.2525617-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2724471053503938782==" List-Id: --===============2724471053503938782== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit This should be a better default than using VDSL2 since "conservative" should work on all connections. Signed-off-by: Michael Tremer --- config/udev/network-aqm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/udev/network-aqm b/config/udev/network-aqm index 3ef9b0f59..d51c6fbde 100644 --- a/config/udev/network-aqm +++ b/config/udev/network-aqm @@ -65,9 +65,9 @@ case "${ACTION}" in exit 0 ;; - # Handle RED PPPoE (default to VDSL2) + # Handle dial-up connections on RED ppp*,512) - args+=( "cake" "internet" "pppoe-ptm" "ack-filter" ) + args+=( "cake" "internet" "conservative" "ack-filter" ) ;; # Treat any other interfaces as "Ethernet" -- 2.30.2 --===============2724471053503938782==--