How to disable SSLv3 protocol in Apache ActiveMQ?

淺唱寂寞╮ 提交于 2019-12-23 21:23:50

问题


I want to disable SSLv3 protocol in Apache ActiveMQ.

Can not find relevant information here: http://activemq.apache.org/ssl-transport-reference.html

The link above only shows how to configure CipherSuites


回答1:


There is an enabledProtocols option you can use on the transport connector. You can't exclude, but you can choose valid protocols.

transport.enabledProtocols=<comma separated list of SSL/TLS protocols>

So, a TLS only "default" transport connector should look like this:

<transportConnector name="ssl" uri="ssl://0.0.0.0:61618?transport.enabledProtocols=TLSv1,TLSv1.1,TLSv1.2&amp;maximumConnections=1000&amp;wireFormat.maxFrameSize=104857600"/>


来源:https://stackoverflow.com/questions/26436565/how-to-disable-sslv3-protocol-in-apache-activemq

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!