Testare un servizio SSL: Difference between revisions

From RVM Wiki
Jump to navigation Jump to search
New page: {{Stub}} Per testare un servizio IMAPS con telnet: openssl s_client -connect hostname.com:443 ==Riferimenti== *[http://www.utahsysadmin.com/2007/11/08/testing-httphttps-through-telneto...
 
mNo edit summary
Line 1: Line 1:
{{Stub}}
Per testare un servizio IMAPS con telnet:
Per testare un servizio IMAPS con telnet:


  openssl s_client -connect hostname.com:443
  openssl s_client -connect hostname.com:443
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==
==Riferimenti==
*[http://www.utahsysadmin.com/2007/11/08/testing-httphttps-through-telnetopenssl/ UtahSysAdmin.com | Testing HTTP/HTTPS through telnet/openssl:]
*[http://www.utahsysadmin.com/2007/11/08/testing-httphttps-through-telnetopenssl/ UtahSysAdmin.com | Testing HTTP/HTTPS through telnet/openssl:]
*[http://a2.pluto.it/a2508.htm#almlindex8604 Appunti Linux: 408.5 - Telnet-SSL]

Revision as of 07:14, 28 April 2008

Per testare un servizio IMAPS con telnet:

openssl s_client -connect hostname.com:443

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