hostapd repeating “deauthenticated due to local deauth request”

前端 未结 2 1697
无人及你
无人及你 2021-02-04 02:09

I have recently setup my Raspberry Pi to operate as an AP/router for my home network. Using many tutorials online, I finally succeeded but have been encountering a serious probl

2条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-04 02:45

    Same here! Looking a little bit deeper showed that in my configuration the key exchange seems to be a problem: setting wpa_group_rekey=10 in hostapd.conf increases probability of the deauth requests. Also channel selection influences probability.

    So my current solution are the following entries in hostapd.conf:

    ap_max_inactivity=1800
    skip_inactivity_poll=1
    disassoc_low_ack=0
    
    wpa_group_rekey=3600
    channel=acs_survey
    acs_num_scans=5
    

    My configuration is as follows:

    • raspbian testing
    • kernel 4.1.15
    • hostapd 2.3
    • WLAN Ralink RT5370

    This is actually a hack, because it just reduces probability.

    On the other hand it allows to increase likelihood of the problem to investigate further ;-)

提交回复
热议问题