Testare un servizio SSL: Difference between revisions

From RVM Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 2: Line 2:


  openssl s_client -connect hostname.com:443
  openssl s_client -connect hostname.com:443
* Per verificare tutti i dettagli di un certificato, ad esempio:
echo quit | openssl s_client -connect servername.example.com:465 | openssl x509 -text -noout


Oppure, si può installare il client telnet con ssl:
Oppure, si può installare il client telnet con ssl:

Revision as of 14:29, 22 February 2017

Per testare un servizio IMAPS con telnet:

openssl s_client -connect hostname.com:443
  • Per verificare tutti i dettagli di un certificato, ad esempio:
echo quit | openssl s_client -connect servername.example.com:465 | openssl x509 -text -noout

Oppure, si può installare il client telnet con ssl:

sudo apt-get install telnet-ssl

E testare il servizio con:

telnet -z ssl hostname.dom servicenape/port

Esempio 1:

telnet -z ssl fire.croalliance.com imaps

Esempio 2

telnet -z ssl fire.croalliance.com 995

Riferimenti