Sujet : Re: More WiFi mischief in Bookworm
De : josef (at) *nospam* invalid.invalid (Josef Möllers)
Groupes : comp.sys.raspberry-piDate : 17. Jun 2025, 11:15:45
Autres entêtes
Message-ID : <mbctihFndpcU1@mid.individual.net>
References : 1 2
User-Agent : Mozilla Thunderbird
On 17.06.25 11:08, The Natural Philosopher wrote:
On 16/06/2025 23:26, bp@www.zefox.net wrote:
After a month or so of working well, the wifi has again started acting
strange after a series of software updates on a Pi5 running Bookworm.
>
Now the most obvious problem shown in journalctl seems to be authentication.
Entries reporting "no secrets" and authentication failed seem to be the norm.
>
At the same time, sometimes wifi will work long enough to let half or so
of a homepage load.
>
One report on the web suggested that certain characters in passwords
were not handled correctly in bookworm. The only "special" character
I use is a period (.), which according to all reports I can find is
legal for ssid passwords.
>
I have a period in my SSID pasword and all my Pis work fine
When building a Phoniebox for one of our grandchildren, I learned about the "wpa_passphrase" command. It generates a 256-bit PSK from the SSID and the ASCII passphrase and dumps it as a hex string, eg
$ wpa_passphrase abc defghijkl
network={
ssid="abc"
#psk="defghijkl"
psk=6db784a0ea8130c5ff07e690923f9af50cfea5c0776b607bea9bc4478c41f8dd
}
This should
a) get rid of any special character issues
b) speed up the connection establishment.
I successfully tried it on my kubuntu laptop as well.
Josef