openssl x509 -in ./certnew.cer -inform DER -out /etc/cert/ca.pem
-outform PEM
But wpa_supplicant seems to reject it.
Stopping wpa_supplicant: [FAILED]
Starting wpa_supplicant: -ieth1 -DwextLine 26: failed to parse ca_cert
'/etc/cert/ca.pem'.
Line 26: failed to parse ca_cert '/etc/cert/ca.pem'.
Line 30: WPA-PSK accepted for key management, but no PSK configured.
Line 30: failed to parse network block.
Failed to read read or parse configuration
'/etc/wpa_supplicant/wpa_supplicant.conf'.
Thanks for the help
-----BEGIN RSA PRIVATE KEY-----
[ RSA KEY DATA ]
-----END RSA PRIVATE KEY-----
-----BEGIN CERTIFICATE-----
[ CERTIFICATE DATA ]
-----END CERTIFICATE-----
Get the server's private key, certnew.key, then do:
cat certnew.key > certnew.pem
cat certnew.cer >> certnew.pem
This should fix your 802.1x authentication problem. If not, try google
and MSDN.
George