Banging my head against a wall with the built in wifi chipset on the Pi 3.
Using raspbian jessie, 4.4.12-v7+. Using standard brcmfmac driver. I can't get ad-hoc mode working in any mode other than plaintext:
Code: Select all
network={
ssid="adhoc"
key_mgmt=WPA-PSK
proto=RSN
psk="12345678"
mode=1
frequency=2412
pairwise=CCMP
group=CCMP
}Code: Select all
wpa_supplicant -c wpa.conf -Dnl80211 -i wlan0
Successfully initialized wpa_supplicant
wlan0: Trying to associate with SSID 'adhoc'
wlan0: Associated with 7e:39:bc:fe:f8:40
wlan0: CTRL-EVENT-CONNECTED - Connection to 7e:39:bc:fe:f8:40 completed [id=0 id_str=]
wlan0: IBSS-RSN-COMPLETED 04:f0:21:14:c5:33
wlan0: WPA: Failed to set GTK to the driver (alg=3 keylen=16 keyidx=1)
wlan0: RSN: Failed to configure GTK
wlan0: CTRL-EVENT-EAP-FAILURE EAP authentication failed
The intention is to set up a mesh network of Pi 3s. The driver doesn't support 802.11s mesh mode so trying to fall back on adhoc, but going plaintext won't work out.
Any ideas? TIA