Network manager 802.11n mode?

Been digging but couldnt find an answer.
is it possible to set 802.11n hotspot using NetworkManager on Balena?
i only found https://unix.stackexchange.com/questions/184175/how-to-set-up-wifi-hotspot-with-802-11n-mode , but our code already integrates with NetworkManager for all our wifi AP.

Daniel.

Hi, can you share the NM profile you created for this?
Also, does the wifi chipset support 5GHz?

Yes, chipset supports 5Ghz.
from Network manager documentation : https://developer.gnome.org/NetworkManager/stable/settings-802-11-wireless.html
i couldnt figure out how can i force using 802.11n to get faster bitrates.
nmcli con add type wifi ifname wlan0 mode ap con-name WIFI_AP ssid Test
nmcli con modify WIFI_AP 802-11-wireless.band bg
nmcli con modify WIFI_AP 802-11-wireless.channel 1
nmcli con modify WIFI_AP 802-11-wireless-security.key-mgmt wpa-psk
nmcli con modify WIFI_AP 802-11-wireless-security.proto rsn
nmcli con modify WIFI_AP 802-11-wireless-security.group ccmp
nmcli con modify WIFI_AP 802-11-wireless-security.pairwise ccmp
nmcli con modify WIFI_AP 802-11-wireless-security.psk 12345678
nmcli con modify WIFI_AP ipv4.method shared
nmcli con up WIFI_AP

image

Hey Daniel, I have been looking around at various solutions but from the looks of it, it doesn’t seem that networkManager has a mechanism to enforce this on their Hotspot creation. BalenaOS just uses vanilla networkManager, so it might be worth asking on their mailing list if there are any clever ways of doing this otherwise it might only be possible to go the hostapd route as you linked to previously :confused: