I'm using OpenSSL to create a local certificate to be imported in my Vigor 2800VG.
I'm using the following commands in OpenSSL:
openssl genrsa -out foo.key 1024 (for key generation without a pass-phrase)
openssl req -new -key foo.key -out foo.csr (generate 1024 CSR) (I even used the CSR file generated by Vigor)
openssl x509 -req -days 3650 -in foo.csr -signkey foo.key -out foo.crt (generate certificate)
I'm getting a foo.crt file. I'm using Windows XP SP3 certificate Export wizard to turn the crt file into a Base 64 X509 encoded .CER file (as seen in the Vigor manual)
I'm getting the following error when trying to import it into Vigor:
Import X509 Local Certificate
Fail ...
Maybe the format is wrong. Try again!!!!!!!!!!
What am I doing wrong.
Julian.