I have an upstream AP with 802.11k enabled. Now I configure an STA which connects to it:
config wifi-iface 'radio0_sta'
option ifname 'wl0-sta'
option device 'radio0'
option network 'upstream'
option mode 'sta'
option ssid '<upstream_ssid>'
option encryption 'psk2'
option key '<upstream_key>'
option ieee80211k '1'
After setting the value of option ieee80211k
to 1 and 0, and reloading the Wi-Fi, I can see the content of /tmp/run/wpa_supplicant-wl0-sta.conf
is still the same.
So, does this option has any effect at all in STA mode?
P.S: option ieee80211r
and ieee80211w
make the content of that file change, so I assume that they have effect.