EXIT STATUS

When an error occurs, an error message is written to stderr and an error value 1 is returned. The following values are returned:

EXAMPLES

Add the X509 certificate in the cert.pem file to the trust store cim_trust on the CIMServer and associate user nag with the certificate:

ssltrustmgr -a -t cim_trust -c nag -f cert.pem

Add the X509 certificate in the cert.pem file to the trust store specified by the trust path $PEGASUS_HOME/client_trust (User association is not required when trust path is specified):

ssltrustmgr -a -T $PEGASUS_HOME/client_trust -f cert.pem

Add the CRL in class1crl.pem to the Certificate Revocation List on the CIMServer:

ssltrustmgr -a -R -f class1crl.pem

or

ssltrustmgr -aR -f class1crl.pem

Remove the certificate matching the specified issuername and serialnumber from the cim_trust trust store:

ssltrustmgr -r -i "/C=US/ST=California/L=Cupertino/O=Smart & Secure/OU=Secure Software Division/CN=dev.admin.ss.com" -n 01

List all the X509 certificates in the export_trust trust store:

ssltrustmgr -l -t export_trust

List all the X509 certificates in the cim_trust trust store:

ssltrustmgr -l

or

ssltrustmgr -l -t cim_trust

List the CRL issued by the issuer name: "/C=US/ST=California/L=Cupertino/O=Smart & Secure/OU=Secure Software Division/CN=dev.admin.ss.com".

ssltrustmgr -lR -i "/C=US/ST=California/L=Cupertino/O=Smart & Secure/OU=Secure Software Division/CN=dev.admin.ss.com"