User manual

P75598- Belkin OmniView Serial Console
Here is an example prompt:
Country Name <US>
State or Province Name <YourState>
City or Locality <Anchorage>
Organization Name <Your business name>
Prolix Organizational Unit <R & D>
Common Name (SERVER HOST NAME) <IPCS>
Server Admin's email address <you@yourdomain.dom>
ii) Strip pass phrase
openssl rsa -in cakey.pem -out cakey-nopassword.pem
iii) Combine the key and X.509 certificate files into server.pem
cat cakey-nopassword.pem cacert.pem > server.pem
iv) Collect all 3 PEM files and prepare to upload to IPCS server
server.pem , cacert.pem , cakey.pem
2. Signed by trustworthy CA :
i) Prepare private key cakey.pem
openssl genrsa –des3 –out cakey.pem 1024
meaning of parameters:
genrsa : generate RSA private key
des3 : encrypt certificate by DES3
1024 : the key size is 1024 bit
ii) Prepare a Certificate Signing Request
openssl req –new –key cakey.pem –out server.csr
65 / 66