]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
hostapd: Convert multicast packets to unicast
authorMichael Tremer <michael.tremer@ipfire.org>
Mon, 22 Sep 2025 11:25:59 +0000 (13:25 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Mon, 22 Sep 2025 11:46:57 +0000 (11:46 +0000)
This will save some airtime especially when there are legacy clients on
the network.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/initscripts/packages/hostapd

index 6468908bda098a37200469c3d534c35cd6160b69..8362883fe60fc8accce47b87a6e493bfe2a8b635 100644 (file)
@@ -653,6 +653,9 @@ write_config() {
        # 802.11v: Advertise the time
        echo "time_advertisement=2"
 
+       # Convert multicast to unicast packets
+       echo "multicast_to_unicast=1"
+
        return 0
 }