Checking if IMSVA already accepts ECDHE cipher suite
- Log in to IMSVA command-line interface as root.
- Execute the command below:
# openssl s_client -starttls smtp -crlf -connect 127.0.0.1:25 -cipher ECDHE-RSA-AES256-GCM-SHA384
Click the image to enlarge.
- Look for the following lines, which means that "ECDHE-RSA-AES256-GCM-SHA384" is not supported.
New, (NONE), Cipher is (NONE) Secure Renegotioation is NOT supported
Configuring IMSVA to support ECDHE ciphers
- Log in to IMSVA command-line interface as root.
- Execute the command below:
# postconf -e "smtpd_tls_eecdh_grade=strong"
- Reload the Postfix configuration:
# postfix reload
- Run the following command to verify if ECDHE cipher is already accepted.
# openssl s_client -starttls smtp -crlf -connect 127.0.0.1:25 -cipher ECDHE-RSA-AES256-GCM-SHA384
Click the image to enlarge.