Verifying SSL Certificate Chains
Found this link very useful doing this:
http://www.herongyang.com/Cryptography/OpenSSL-Certificate-Path-Validation-Tests.html
Some useful commands:
Display a certificate:
openssl x509 -in test-cert-top.pem -noout -text
Display a certificate's issuer:
openssl x509 -in test-cert-top.pem -noout -issuer
Display a certificate's subject:
openssl x509 -in test-cert-top.pem -noout -subject
Verify a certificate:
openssl verify test-cert-top.pem
Verify a certificate chain with 3 certificates:
openssl verify -CAfile test-cert-bottom.pem -untrusted test-cert-middle.pem test-cert-top.pem
-CAfile keyword indicates which certificate is used as the root certificate, with the -untrusted option being set to validate the intermediate certificate in the chain
Verify a certificate chain with 2 certificates:
openssl verify -CAfile test-cert-bottom.pem test-cert-middle.pem



The new release of Cisco Application Centric Infrastructure (ACI) includes innovations to ease Layer 4-7 network services integration.
LBaaS and a Tunnel Heatmap highlight PLUMgrid's 4.0 release.
Juniper aims at enabling faster, better cloud services for enterprises with its new Unite platform.