1

I'm trying to connect to eduroam with iwd, but when I type

station wlan0 connect eduroam

the only thing I get is "Not configured". The config file I created at /var/lib/iwd/eduroam.8021x looks like this:

[Security]
EAP-Method=PEAP
[email protected]
EAP-PEAP-CACert=/home/XXXX/eduroam.pem
EAP-PEAP-ServerDomainMask=*.tubit.tu-berlin.de
EAP-PEAP-Phase2-Method=MSCHAPV2
[email protected]
EAP-PEAP-Phase2-Password=XXXX

[Settings]
AutoConnect=true

iwd works fine with every other network and eduroam shows up in the known-networks list, so I don't really get where the error message comes from. What am I missing here?

AdminBee
  • 21,637
  • 21
  • 47
  • 71

1 Answers1

3

Most likely, iwd.service is unable to load EAP-PEAP-CACert=/home/XXXX/eduroam.pem

from the /home directory as it has ProtectHome=yes set.

Try moving the certificate into a location readable by iwd.

Paulo Tomé
  • 3,754
  • 6
  • 26
  • 38
tkourt
  • 46
  • 1