OpenWRT dumb AP with WPA3-SAE + 802.11r

OpenWRT veriosn: 23.05.2

HW: TOTOLINK X5000R

Ref: https://vicfree.com/2022/11/openwrt-wpa3-802.11kvr-ap-setup/


Requirement:

#install fully wpad package with openssl
    opkg update
    opkg install wpad-openssl

#disabled firewall, dhcp server and dnsmasq
    for i in firewall dnsmasq odhcpd; do
        if /etc/init.d/"$i" enabled; then
            /etc/init.d/"$i" disable
            /etc/init.d/"$i" stop
        fi
    done


Luci setting:





/etc/config/wireless:

    config wifi-iface 'wifinet1'
        option device 'radio1'
        option mode 'ap'
        option ssid 'MY_SSID'
        option encryption 'sae'
        option key 'MY_PASSWORD'
        option ieee80211r '1'
        option reassociation_deadline '20000'
        option ft_over_ds '0'
        option ft_psk_generate_local '0'
        option ieee80211k '1'
        option time_zone 'CST-8'
        option wnm_sleep_mode '1'
        option wnm_sleep_mode_no_keys '1'
        option bss_transition '1'
        option network 'lan'


How to check work or not:

#Run this command in OpenWRT ssh
    logread -f

Shown below means it work.

From A to B, then back to A:

A will show:



B will show:


留言

這個網誌中的熱門文章

OpenVPN Server build on Debian 11