From: Michael Tremer Date: Wed, 14 Aug 2024 16:49:56 +0000 (+0200) Subject: AQM: Ignore WireGuard interfaces X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fadf9488c4ad2dcee9060240dabafe49fa74b154;p=people%2Fstevee%2Fipfire-2.x.git AQM: Ignore WireGuard interfaces Signed-off-by: Michael Tremer --- diff --git a/config/udev/network-aqm b/config/udev/network-aqm index 36355cfc6..aad49abbe 100644 --- a/config/udev/network-aqm +++ b/config/udev/network-aqm @@ -79,6 +79,11 @@ case "${ACTION}" in exit 0 ;; + # Ignore WireGuard + wg[0-9]*,*) + exit 0 + ;; + # Handle dial-up connections on RED ppp*,512) args+=( "cake" "internet" "conservative" "ack-filter" )