User Tools

Site Tools


howtos:run_a_test_client

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
howtos:run_a_test_client [20/02/2018 14:45] domingohowtos:run_a_test_client [02/12/2018 21:34] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +Here are some simple commands you can use to test a SSL/TLS enabled site or service.
 +
 +=== Simple Connect ===
 +
 +<code>
 +openssl s_client -connect dr.dk:443
 +</code>
 +
 +=== Test with CA Validation ===
 +
 +<code>
 +openssl s_client -connect localhost:9000 -CApath /etc/grid-security/certificates
 +</code>
 +
 +=== Test a SMTP server ===
 +
 +<code>
 +openssl s_client -connect mail.example.com:25 -starttls smtp
 +</code>
 +
 +=== Test with Displayed Certificates ====
 +
 +<code>
 +openssl s_client -showcerts -connect  www.thawte.com:443
 +</code>
 +
  
howtos/run_a_test_client.txt · Last modified: 02/12/2018 21:34 by 127.0.0.1