Changes between Version 6 and Version 7 of IamProjectCerts


Ignore:
Timestamp:
10/05/11 09:53:39 (13 years ago)
Author:
jpmitchell@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IamProjectCerts

    v6 v7  
    1313||iam.alaska.edu||!InCommon||IAM Wiki||Iron, Inner||2013/06/06|| 
    1414 
    15 * Quick SSL Cert Check How To: 
    16  1. Get subject, issuer, and expiration date from a server. 
     15== Quick SSL Cert How Tos == 
     16* Generate CSR and submit request to !InCommon Cert Service 
     17 1. Generate CSR with OpenSSL 
     18{{{ 
     19john@fearless:~/Documents/Security/Certs$ openssl req -new -newkey rsa:2048 -nodes -keyout idmq-2.alaska.edu.key -out idmq-2.alaska.edu.csr 
     20}}} 
     21 Use the following values: 
     22{{{ 
     23OU = OIT Identity and Access Management 
     24O = University of Alaska Statewide System 
     25L = Fairbanks 
     26ST = AK 
     27C = US 
     28CN=somehost.alaska.edu/emailAddress=iam@alaska.edu 
     29}}} 
     30 2. Submit CSR[[br]] 
     31 https://cert-manager.com/customer/InCommon/ssl?action=enroll 
     32 3. Use IAM credentials for submission 
     33  
     34 
     35* Get subject, issuer, and expiration date from a server. 
    1736{{{ 
    1837john@fearless:~$ openssl s_client -host idp.alaska.edu -port 443 2>&1 | openssl x509 -subject -issuer -enddate | head -n 3 
     
    2140notAfter=Sep 11 23:59:59 2013 GMT 
    2241}}} 
    23  2. Verify certificate chain with CA root public cert: 
     42* Verify certificate chain with CA root public cert: 
    2443{{{ 
    2544john@fearless:~$ openssl s_client -CAfile /home/john/Desktop/AddTrustExternalCARoot.crt -showcerts -verify 5 -host idp.alaska.edu -port 443