diff options
author | Felix Fietkau <nbd@nbd.name> | 2021-06-04 09:12:07 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2021-11-23 18:30:04 +0100 |
commit | 93dc8760b0860c2c5a711f814992f9c112813199 (patch) | |
tree | e7d5daf2f7600c412837118b4c35de24a00e94b7 /package/network/services/hostapd/files | |
parent | ce7a1704148693bd357b4fdba1bbd7eb9f5f6356 (diff) | |
download | upstream-93dc8760b0860c2c5a711f814992f9c112813199.tar.gz upstream-93dc8760b0860c2c5a711f814992f9c112813199.tar.bz2 upstream-93dc8760b0860c2c5a711f814992f9c112813199.zip |
hostapd: configure inter-AP communication interface for 802.11r
In setups using VLAN bridge filtering, hostapd may need to communicate using
a VLAN interface on top of the bridge, instead of using the bridge directly
Signed-off-by: Felix Fietkau <nbd@nbd.name>
(cherry-picked from commit 305c1b8d746b363f655c2f8d5a6497cca10a5d4e)
Diffstat (limited to 'package/network/services/hostapd/files')
-rw-r--r-- | package/network/services/hostapd/files/hostapd.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/network/services/hostapd/files/hostapd.sh b/package/network/services/hostapd/files/hostapd.sh index e62dd844c8..40c6d9b851 100644 --- a/package/network/services/hostapd/files/hostapd.sh +++ b/package/network/services/hostapd/files/hostapd.sh @@ -794,6 +794,7 @@ hostapd_set_bss_options() { ;; esac + [ -n "$network_ifname" ] && append bss_conf "ft_iface=$network_ifname" "$N" append bss_conf "mobility_domain=$mobility_domain" "$N" append bss_conf "ft_psk_generate_local=$ft_psk_generate_local" "$N" append bss_conf "ft_over_ds=$ft_over_ds" "$N" |