Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- deragistration
- fdisk
- 아마존
- Query
- centos
- Windows
- EBS
- Error
- xen
- DELETE
- 센토스
- terraform
- RDS
- awscli
- 리눅스
- nvme
- 인스턴스타입
- onpromise
- VPN
- resize2fs
- mysql
- port
- DISK
- x-real-ip
- ubuntu
- x-forward-for
- Linux
- AWS
- EC2
- ntp
Archives
- Today
- Total
Cloud
SSL SMTP 테스트 방법 본문
SSL 테스트 방법은 일반 25번 포트를 이용하는 것과 다르게 인코딩 ID/PW 를 입력해야 한다.
먼저 ID / PW 를 인코딩 한다
$ echo -ne "username" | base64
dXNlcm5hbWU=
$ echo -ne "password" | base64
cGFzc3dvcmQ=
그 후 서버 접속
openssl s_client -connect 서버주소:465
AUTH LOGIN
후에
334 VXNlcm5hbWU6 (username인코딩된 상태)
dXNlcm5hbWU=
334 UGFzc3dvcmQ6 (password인코딩된 상태)
cGFzc3dvcmQ=
235 Authentication successful
이후 본문 body 입력
MAIL FROM: 보낸사람
250 Sender address accepted
rcpt to: 받느사람
250 Recipient address accepted
DATA
354 Continue
From: 보낸사람
Subject: Test message!
Hi,
This is a test message!
.
250 Ok: queued as bazLUKfehklgwKH25dH6
'네트워크' 카테고리의 다른 글
리눅스 라우터 만들기 (0) | 2022.12.07 |
---|---|
SSL 갱신 시 작업 내용 ( renewal ) (0) | 2021.01.05 |
서버의 시스코 스위치 케이블 연결 포트 확인 방법 (0) | 2020.01.29 |
WIFI AX 쓸만할까? (WIFI 6) (0) | 2019.01.09 |
시놀로지 라우터 RT1900ac (0) | 2018.06.12 |
Comments