How do I disable SSLv3 in Apache ActiveMQ?

I want to disable SSLv3 protocol in Apache ActiveMQ.

Can't find the information you need here: http://activemq.apache.org/ssl-transport-reference.html

The above link shows how to set up CipherSuites

+3


source to share


1 answer


There is an enabledProtocols option that you can use on the transport connector. You cannot exclude, but you can select valid protocols.

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

      



Thus, the "default" only TLS 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"/>

      

+5


source







All Articles