From cecca6854df09d70d7b64efe2bb8f9de11c1a630 Mon Sep 17 00:00:00 2001 From: Joe Ayers Date: Thu, 28 May 2020 19:41:16 -0700 Subject: [PATCH] aredn: add Mode ether to tunnel interfaces This reduces message forwarding by OLSR. Without this mode olsr will forward a message backout the same interface it was received on, presumably due to hidden 802.11n nodes. --- files/usr/local/bin/olsrd-config | 1 + 1 file changed, 1 insertion(+) diff --git a/files/usr/local/bin/olsrd-config b/files/usr/local/bin/olsrd-config index e82be6ab..608d9cf9 100755 --- a/files/usr/local/bin/olsrd-config +++ b/files/usr/local/bin/olsrd-config @@ -144,6 +144,7 @@ if ( @tunnels ) foreach(@tunnels) { push @file, qq("$_" ) } push @file, qq(\n{\n); push @file, qq( Ip4Broadcast 255.255.255.255\n); + push @file, qq( Mode \"ether\"\n); push @file, qq(}\n); }