Replies: 3 comments 1 reply
-
I will convert this issue to a GitHub discussion. Currently GitHub will automatically close and lock the issue even though your question will be transferred and responded to elsewhere. This is to let you know that we do not intend to ignore this but this is how the current GitHub conversion mechanism makes it seem for the users :( |
Beta Was this translation helpful? Give feedback.
-
RabbitMQ does not implement any cipher suites or TLS state machine parts. |
Beta Was this translation helpful? Give feedback.
-
There is nothing relevant in the Erlang 24.1 release notes. The above suites are not on the list that passes For TLS 1.2, here is the list of cipher suites which is a good start: ssl_options.ciphers.1 = ECDHE-ECDSA-AES256-GCM-SHA384
ssl_options.ciphers.2 = ECDHE-RSA-AES256-GCM-SHA384
ssl_options.ciphers.3 = ECDH-ECDSA-AES256-GCM-SHA384
ssl_options.ciphers.4 = ECDH-RSA-AES256-GCM-SHA384
ssl_options.ciphers.5 = DHE-RSA-AES256-GCM-SHA384
ssl_options.ciphers.6 = DHE-DSS-AES256-GCM-SHA384
ssl_options.ciphers.7 = ECDHE-ECDSA-AES128-GCM-SHA256
ssl_options.ciphers.8 = ECDHE-RSA-AES128-GCM-SHA256
ssl_options.ciphers.9 = ECDH-ECDSA-AES128-GCM-SHA256
ssl_options.ciphers.10 = ECDH-RSA-AES128-GCM-SHA256
ssl_options.ciphers.11 = DHE-RSA-AES128-GCM-SHA256
ssl_options.ciphers.12 = DHE-DSS-AES128-GCM-SHA256 I can't suggest much more since you haven't clarified what "not available when connecting" means. This maybe an Erlang version and TLS library interplay or something else. You are welcome to ask on |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I was just running in an issue on our labs while testing some latest releases.
With rabbitmq 3.9.x and erlang 24.0.6 and before, the settings
for cipher-suites are working well.
Beginning with erlang 24.1, those settings are ignored and the ciphersuites are not available on connecting to rabbitmq,
If you list the supported ciphers:
rabbitmq-diagnostics cipher_suites --format erlang -q | grep cbc
both, on erlang 24.0 and 24.1, they are supported. But with erlang 24.1, not available anymore when connecting.
Is this an issue with rabbitmq, or erlang? I am confused.
Thanks
Ronny
Beta Was this translation helpful? Give feedback.
All reactions