nugawiki

./categories/server

OpenSSL로 TLS 버전 확인

업데이트 2026-07-21 조회수

서버가 협상한 SSL/TLS 버전 확인:

openssl s_client -connect example.com:443 </dev/null 2>/dev/null | grep -i Protocol

출력 예: Protocol : TLSv1.2

특정 프로토콜만 테스트:

openssl s_client -connect example.com:443 -tls1_2
openssl s_client -connect example.com:443 -tls1_3

./comments