LoginSignup
2
2

More than 3 years have passed since last update.

mod_ssl の SSLCipherSuite値指定

Last updated at Posted at 2019-10-05

参考

SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5
確認方法
openssl ciphers -v 'HIGH:MEDIUM:!aNULL:!MD5'
version
openssl version

確認方法

対応しているもの全部見たい場合
openssl ciphers -v 'ALL'
SSLv3だけを見たい場合
# ! は否定を表す様子
openssl ciphers -v '!ALL:SSLv3'
TSL1.2に対応しているものだけを見たい場合
openssl ciphers -v '!ALL:TLSv1.2'
TSL1.0に対応しているものだけを見たい場合
openssl ciphers -v '!ALL:TLSv1.0'
openssl ciphers -v '!ALL:TLSv1'

SSLProtocol

  ... (略) ...
  SSLEngine on
+ SSLProtocol All -SSLv2 -SSLv3
  SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW
  SSLCertificateFile /etc/httpd/conf/ssl/server.crt
  SSLCertificateKeyFile /etc/httpd/conf/ssl/server.key
 ...

もしくは以下のように列挙する。

SSLProtocol -all +TLSv1.2 +TLSv1.0
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2