Hi,
my raspberry py is not connecting to my ( hidden ) wifi network.
Other devices are connecting to this network,
so I'm sure it is working, and name and password are correct
So why is it not working?
Solved : linux not connecting to hidden wifi network
Solved : linux not connecting to hidden wifi network
Last edited by mister_v on Tue Dec 21, 2021 10:25 am, edited 1 time in total.
Re: linux not connecting to hidden wifi network
Because a hidden wifi network doesn't broadcast its name,
You have to tell the raspberry pi to scan for it.
add
in /etc/wpa_supplicant/wpa_supplicant.conf
or
in /etc/network/interfaces/wlan0
You have to tell the raspberry pi to scan for it.
add
Code: Select all
scan_ssid=1
or
Code: Select all
wpa-scan-ssid 1
Re: linux not connecting to hidden wifi network
I knew i forgot something.
This solved the problem.
This solved the problem.