Hello
I encountered a strange situation while using OpenWrt on Raspberry Pi. I used the same setup with an older version of OpenWrt and it worked fine. Since I am trying to use a newer version on OpenWrt I am not able to use Rasperry Pi 3B as an AP.
First I setup the new installation over the ethernet port and enable the wifi on the Raspberry. After doing this, I can connect no it over wifi, Raspberry as AP.
After reboot, I see the wifi, but cannot connect. Here is my config:
config wifi-device 'radio0'
option type 'mac80211'
option path 'platform/soc/3f300000.mmcnr/mmc_host/mmc1/mmc1:0001/mmc1:0001:1'
option channel '6'
option band '2g'
option legacy_rates '1'
option cell_density '0'
option country 'DE'
config wifi-iface 'default_radio0'
option device 'radio0'
option network 'lan'
option mode 'ap'
option ssid 'xx'
option encryption 'psk2'
option key 'xx'
And here is the dmesg error of the computer trying to connect
Connection to AP aa:bb:cc:dd:00:11 lost
80 MHz not supported, disabling VHT
authenticate with aa:bb:cc:dd:00:11 (local address=11:22:33:44:55:66)
send auth to aa:bb:cc:dd:00:11 (try 1/3)
authenticated
associate with aa:bb:cc:dd:00:11 (try 1/3)
RX AssocResp from aa:bb:cc:dd:00:11 (capab=0x411 status=0 aid=1)
associated
Connection to AP aa:bb:cc:dd:00:11 lost
80 MHz not supported, disabling VHT
In the older OpenWrt I had the following config, that worked stable:
config wifi-device 'radio0'
option type 'mac80211'
option channel '11'
option hwmode '11g'
option path 'platform/soc/3f300000.mmcnr/mmc_host/mmc1/mmc1:0001/mmc1:0001:1'
option htmode 'HT20'
option disabled '0'
option txpower '14'
option cell_density '0'
Thanks in advance
Claudio