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.
This commit is contained in:
Joe Ayers 2020-05-28 19:41:16 -07:00 committed by Joe AE6XE
parent 16e33b5306
commit cecca6854d
1 changed files with 1 additions and 0 deletions

View File

@ -144,6 +144,7 @@ if ( @tunnels )
foreach(@tunnels) { push @file, qq("$_" ) } foreach(@tunnels) { push @file, qq("$_" ) }
push @file, qq(\n{\n); push @file, qq(\n{\n);
push @file, qq( Ip4Broadcast 255.255.255.255\n); push @file, qq( Ip4Broadcast 255.255.255.255\n);
push @file, qq( Mode \"ether\"\n);
push @file, qq(}\n); push @file, qq(}\n);
} }