From 23ce6c02e7ec26f96e4276a4b687f5d25a80f8f0 Mon Sep 17 00:00:00 2001 From: "Ycarus (Yannick Chabanois)" Date: Mon, 4 Mar 2024 17:44:46 +0100 Subject: [PATCH] Fix issue https://github.com/Ysurac/openmptcprouter/issues/3192 --- mptcp/files/etc/init.d/mptcp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mptcp/files/etc/init.d/mptcp b/mptcp/files/etc/init.d/mptcp index 09a99bf73..64a1cd662 100755 --- a/mptcp/files/etc/init.d/mptcp +++ b/mptcp/files/etc/init.d/mptcp @@ -80,7 +80,7 @@ interface_macaddr_count() { interface_max_metric() { local config="$1" - if [ "$1" != "omrvpn" ] && [ "$1" != "omr6in4" ]; then + if [ "$1" != "omrvpn" ] && [ "$1" != "omr6in4" ] && [ "$1" != "lan" ]; then config_get metric "$config" metric if [ "$metric" = "$count" ]; then count=$((count+1))