Hi,
The support for WPA2 Enterprise Wifi authentication is not available in the LE11 GUI, but there must be a way to get this working with manual configuration. I can get a wifi connection running, by supplying these 2 files, and storing the CA cert file in /storage/certs/fullchain.pem
1. /var/lib/iwd/<ssid>.8021x
[Security]
EAP-Method=PEAP
EAP-Identity=anonymous
EAP-PEAP-CACert=/storage/certs/fullchain.pem
EAP-PEAP-Phase2-Method=MSCHAPV2
EAP-PEAP-Phase2-Identity=<user>
EAP-PEAP-Phase2-Password=<password>
[Settings]
AutoConnect=true
2. /storage/.cache/connman/<ssid>.config
[service_wifi_<ssid>]
Type = wifi
IPv4 = dhcp
IPv6 = auto
Name = <ssid>
Passphrase = <password>
Security = ieee8021x
EAP = peap
Phase2 = MSCHAPV2
Identity = <user>
CACertFile = /storage/certs/fullchain.pem
AnonymousIdentity=anonymous
Sadly, /var/lib/iwd is on tmpfs, so I can not get this persistent, and I have not found out how to get this parameters in the connman configuration.
Any ideas how to make this configuration persistant?
Regards,
Karel.