gluon-mesh-batman-adv: remove MTU workaround for VLAN-on-WLAN

We don't support VLANs on 11s interfaces, so the workaround can be dropped
with the IBSS support.
This commit is contained in:
Matthias Schiffer 2019-11-05 20:47:50 +01:00
parent 066158a27b
commit 02c7503f74

View File

@ -1,13 +1,5 @@
#!/bin/sh
if [ "$FIXED_MTU" -eq 0 ]; then
# In case on VLAN on IBSS, first set MTU of the underlying interface
for lower in /sys/class/net/"$IFNAME"/lower_*/wireless; do
lower="${lower%%\/wireless}"
lower="${lower##*\/lower_}"
ip link set dev "$lower" mtu 1536
break
done
ip link set dev "$IFNAME" mtu 1532
fi