我想设置一个Apache服务器(在VM中),它只支持 SSLv2 SSLProtocol进行测试。网上有没有指示,或者有人能指导我吗?
提前感谢!
发布于 2017-03-26 01:48:33
转到/conf/extra/httpd-ssl.conf,并找到以下设置:
# SSL Cipher Suite:
# List the ciphers that the client is permitted to negotiate.
# See the mod_ssl documentation for a complete list.
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL您可以调整从SSLCipherSuite开始的行,并选择要使用的协议。
https://stackoverflow.com/questions/43024034
复制相似问题