如何在Apache ActiveMQ中禁用SSLv3协议? [英] How to disable SSLv3 protocol in Apache ActiveMQ?

查看:390
本文介绍了如何在Apache ActiveMQ中禁用SSLv3协议?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在Apache ActiveMQ中禁用SSLv3协议。

I want to disable SSLv3 protocol in Apache ActiveMQ.

在此处找不到相关信息:
http://activemq.apache.org/ssl-transport-reference.html

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

上面的链接仅显示了如何配置CipherSuites

The link above only shows how to configure CipherSuites

推荐答案

在传输连接器上可以使用enabledProtocols选项。您不能排除,但可以选择有效的协议。

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>

因此,仅TLS的默认传输连接器应如下所示:

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"/>

这篇关于如何在Apache ActiveMQ中禁用SSLv3协议?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆