openssl command smtp(ssl) 및 imap(ssl) 접속확인# Operation System/Linux2020. 10. 5. 17:06
Table of Contents
728x90
반응형
To connect using the TLS protocol on port 587, use:
[darksharavim]openssl s_client -starttls smtp -connect smtp.mail.nate.com:587
smtp-ssl(465)
[darksharavim]openssl s_client -connect smtp.mail.nate.com:465
imap-ssl(993)
[darksharavim]openssl s_client -crlf -connect imap.nate.com:993
https://stackoverflow.com/questions/14959461/how-to-talk-to-imap-server-in-shell-via-openssl
인증서 유효기간 확인
## 로컬 https, smtps, pops, imaps 인증서 유효기간 확인시 참조
echo | openssl s_client -servername localhost -connect localhost:443 2>/dev/null | openssl x509 -noout -dates
echo | openssl s_client -servername localhost -connect localhost:465 2>/dev/null | openssl x509 -noout -dates
echo | openssl s_client -servername localhost -connect localhost:995 2>/dev/null | openssl x509 -noout -dates
echo | openssl s_client -servername localhost -connect localhost:993 2>/dev/null | openssl x509 -noout -dates
출처 : https://www.stevenrombauts.be/2018/12/test-smtp-with-telnet-or-openssl/
728x90
반응형
'# Operation System > Linux' 카테고리의 다른 글
geoip 자동업데이트 스크립트 (0) | 2020.10.23 |
---|---|
centos5 wget 업그레이드 (0) | 2020.10.22 |
centos7 iptables geoip 설치 및 적용 (3) | 2020.07.08 |
centos5 curl 버전 업그레이드 (0) | 2020.03.26 |
centos5 openssl 버전 업그레이드 (2) | 2020.03.26 |
@다크쉐라빔 :: 다크쉐라빔의 주절주절
안녕하세요. 이곳은 IT위주의 잡다한 정보를 올려두는 개인 블로그입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!