Posts by rmullen

    Awhile back, I was able to get WPA3 working on Raspberry Pi OS (Debian 12). I think this was either on a Raspberry Pi 3B or 4.

    root@raspberrypi:/etc/wpa_supplicant# cat wpa_supplicant.conf
    ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
    update_config=1
    country=US

    network={
    scan_ssid=1
    ssid="myssid"
    psk="mypassword"
    key_mgmt=WPA-PSK
    }

    The key (no pun intended) to getting it to work was adding the key_mgmt=WPA-PSK setting.

    I'm wondering if it's possible to set this setting in LibreELEC, and if so, how.