renderer: add missing support for hostapd_bss_raw and hostapd_iface_raw

Signed-off-by: John Crispin <john@phrozen.org>
This commit is contained in:
John Crispin
2021-10-12 10:34:03 +02:00
parent 8eb586bce2
commit 50d182cb6e
2 changed files with 7 additions and 0 deletions

View File

@@ -298,6 +298,10 @@ set wireless.{{ section }}.rssi_reject_assoc_rssi={{ ssid.quality_thresholds.ass
set wireless.{{ section }}.rssi_ignore_probe_request={{ ssid.quality_thresholds.probe_request_rssi }}
{% endif %}
{% for (let raw in ssid.hostapd_bss_raw): %}
set wireless.{{ section }}.hostapd_bss_options={{ s(raw) }}
{% endfor %}
{% if (ssid.pass_point): %}
set wireless.{{ section }}.iw_enabled=1
set wireless.{{ section }}.hs20=1

View File

@@ -120,4 +120,7 @@ set wireless.{{ phy.section }}.ema={{ b(radio.he_settings.ema) }}
{% if (radio.rates): %}
set wireless.{{ phy.section }}.basic_rate={{ radio.rates.multicast }}
{% endif %}
{% for (let raw in radio.hostapd_iface_raw): %}
set wireless.{{ phy.section }}.hostapd_options={{ s(raw) }}
{% endfor %}
{% endfor %}