I've been trying to set up my Raspberry Pi 0W V1.3 headless. I only have the possibility of connecting a monitor, but no keyboard/mouse.
I downloaded a fresh version of Raspbian Buster lite (Release: 2020-02-13) from the official site and flashed it to my SD card. I created a wpa_supplicant.conf file with unix line endings and with the following content:
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=FI
network={
ssid="*SSID*"
psk="*PASSWORD*"
key_mgmt=WPA-PSK
}
I have also tried windows line endings and multiple versions of the wpa supplicant. Some of the versions I've tried include leaving the country
field away, adding scan_ssid=1
, leaving key_mgmt
field away and different combinations of these.
I also added the empty ssh file to enable ssh. When I boot up the system, I get no errors on the boot screen, yet for some reason it doesn't connect to my wireless network. I logged in to my routers control panel to see connected devices and it's not there. There's no restrictions on the network that would affect the pi. The SSID is not hidden nor contains any special characters that could induce this problem. When I re-insert the SD card to my computer and see the wpa_supplicant.conf and ssh files gone as they should be. According to my knowledge and multiple different tutorials online, I should be doing everything correctly, yet I get no connection.
Any ideas on what possibly causes this?
Edit: In the matter of fact, I just booted up my RPI3 running kali-linux-2020.1-rpi3-nexmon and tried connecting to the router and successfully initiated a connection.
– Sanduuz Mar 24 '20 at 13:40