01-31-2025, 10:06 PM
(This post was last modified: 01-31-2025, 10:40 PM by philrandal.)
OK, I have made some progress.
Default AP on a Pi 3B has connection proto "rsn". Even after using nmcli to set pairwise to "ccmp" advertises tkip and ccmp, which I suspect is the problem.
I can login from windows 11 but not from my Android 14 phone.
Changing the proto to "wpa" enables me to connect from both my phone and from windows, with warnings of insecure connection, of course.
After a reboot it all works.
sudo cat /etc/NetworkManager/system-connections/Hotspot.nmconnection
Not ideal, I know, but I can't figure out how to turn off tkip with wpa2 which might well be the root of the problem.
Sorry if I'm barking up the wrong tree here.
Cheers,
Phil
Default AP on a Pi 3B has connection proto "rsn". Even after using nmcli to set pairwise to "ccmp" advertises tkip and ccmp, which I suspect is the problem.
I can login from windows 11 but not from my Android 14 phone.
Changing the proto to "wpa" enables me to connect from both my phone and from windows, with warnings of insecure connection, of course.
Code:
sudo nmcli con modify Moode3 802-11-wireless-security.group ccmp 802-11-wireless-security.pairwise ccmp 802-11-wireless-security.proto wpa
After a reboot it all works.
sudo cat /etc/NetworkManager/system-connections/Hotspot.nmconnection
Code:
[connection]
id=Moode3
uuid=48611b33-96b9-4133-b0d2-f244c234b548
type=wifi
autoconnect=false
interface-name=wlan0
timestamp=1738360436
[wifi]
mode=ap
ssid=Moode3
[wifi-security]
group=ccmp;
key-mgmt=wpa-psk
pairwise=ccmp;
proto=wpa;
psk=whatevverpassword
[ipv4]
address1=172.24.1.1/24
method=shared
[ipv6]
addr-gen-mode=default
method=ignore
[proxy]
Not ideal, I know, but I can't figure out how to turn off tkip with wpa2 which might well be the root of the problem.
Sorry if I'm barking up the wrong tree here.
Cheers,
Phil