From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [RFC PATCH 1/8] AQM: Use CAKE as default qdisc where appropriate instead of fq_codel Date: Thu, 02 Dec 2021 12:37:41 +0000 Message-ID: <20211202123748.2525617-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0083761452144626782==" List-Id: --===============0083761452144626782== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit This script configures CAKE as default qdisc where appropriate: * It is not suitable to use any queue management on bridges/GRE/VTI/tun interfaces. * On Internet-facing interfaces, CAKE is configured in "internet" mode whereas on any zones except RED, it is configured in "metro" mode Signed-off-by: Michael Tremer --- config/udev/enable_codel | 65 ++++++++++++++++++++++++++++++++-------- 1 file changed, 52 insertions(+), 13 deletions(-) diff --git a/config/udev/enable_codel b/config/udev/enable_codel index 6cafd9b26..3ef9b0f59 100644 --- a/config/udev/enable_codel +++ b/config/udev/enable_codel @@ -21,9 +21,9 @@ # # ############################################################################ -LOG_FACILITY="codel" +LOG_FACILITY="aqm" -function log() { +log() { logger -t "${LOG_FACILITY}" $@ } @@ -32,19 +32,58 @@ if [ -z "${INTERFACE}" ]; then exit 1 fi -# Do nothing for the loopback device. -[ "${INTERFACE}" = "lo" ] && exit 0 - case "${ACTION}" in add|register) - # Change root qdisc to use fq_codel. - /sbin/tc qdisc add root dev ${INTERFACE} fq_codel - ret=$? - - if [ ${ret} -eq 0 ]; then - log "Codel AQM has been enabled on '${INTERFACE}'." - else - log "Codel AQM could not be enabled on '${INTERFACE}'. Error code: ${ret}" + TYPE="$(