The sender domain has a DMARC Reject/Quarantine policy which disallows
sending mailing list messages using the original "From" header.

To mitigate this problem, the original message has been wrapped
automatically by the mailing list software.
--- Begin Message ---
This allows configuration of multicast_to_unicast and per_sta_vif options.
- multicast_to_unicast requests multicast-to-unicast conversion.
- per_sta_vif assigns each station its own AP_VLAN interface.

Backport from master.

Signed-off-by: Etan Kissling <etan_kissl...@apple.com>
---
 package/network/services/hostapd/files/hostapd.sh | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/package/network/services/hostapd/files/hostapd.sh 
b/package/network/services/hostapd/files/hostapd.sh
index 79e71616dc..603b5a0c80 100644
--- a/package/network/services/hostapd/files/hostapd.sh
+++ b/package/network/services/hostapd/files/hostapd.sh
@@ -245,6 +245,8 @@ hostapd_common_add_bss_config() {
        config_add_boolean sae_require_mfp
        
        config_add_string 'owe_transition_bssid:macaddr' 
'owe_transition_ssid:string'
+
+       config_add_boolean multicast_to_unicast per_sta_vif
 }
 
 hostapd_set_bss_options() {
@@ -267,7 +269,8 @@ hostapd_set_bss_options() {
                iapp_interface eapol_version dynamic_vlan ieee80211w nasid \
                acct_server acct_secret acct_port acct_interval \
                bss_load_update_period chan_util_avg_period sae_require_mfp \
-               multi_ap multi_ap_backhaul_ssid multi_ap_backhaul_key
+               multi_ap multi_ap_backhaul_ssid multi_ap_backhaul_key \
+               multicast_to_unicast per_sta_vif
 
        set_default isolate 0
        set_default maxassoc 0
@@ -627,6 +630,16 @@ hostapd_set_bss_options() {
                }
        }
 
+       set_default multicast_to_unicast 0
+       if [ "$multicast_to_unicast" -gt 0 ]; then
+               append bss_conf "multicast_to_unicast=$multicast_to_unicast" 
"$N"
+       fi
+
+       set_default per_sta_vif 0
+       if [ "$per_sta_vif" -gt 0 ]; then
+               append bss_conf "per_sta_vif=$per_sta_vif" "$N"
+       fi
+
        append "$var" "$bss_conf" "$N"
        return 0
 }
-- 
2.21.1 (Apple Git-122.3)





--- End Message ---
_______________________________________________
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel
  • [no subject] Etan Kissling via openwrt-devel

Reply via email to