openssl s_client -connect localhost:8443 -cert /etc/ssl/groundsrv.pem -key /etc/ssl/groundkey.key -CAfile /etc/ssl/groundca.pem -verify 8 -verify_hostname groundstation-ldap
which worked on local host and port 5671 as well.
then tried from client vi 5671 since I setup tls on this port.
openssl s_client -connect (ip address of host):5671 -cert /etc/ssl/groundsrv.pem -key /etc/ssl/groundkey.key -CAfile /etc/ssl/groundca.pem -verify 8 -verify_hostname groundstation-ldap
The management UI works great with no issues when using ssl.
We are not trying to use FIPS.
What is the cost for support if we needed it?
listeners.tcp.default = 127.0.0.1:5672
listeners.tcp.other = 192.168.0.10:5672
# SSL configuration
listeners.ssl.default = 5775
listeners.ssl.default = 127.0.0.1:5775
listeners.ssl.other = 192.168.0.10:5775
ssl_options.cacertfile = /etc/ssl/groundca.pem
ssl_options.certfile = /etc/ssl/groundsrv.pem
ssl_options.keyfile = /etc/ssl/groundkey.pem
# ssl_options.verify = verify_none
# # ssl_options.fail_if_no_peer_cert = true
# ssl_options.fail_if_no_peer_cert = false
management UI configuration
management.tcp.port = 15672
management.ssl.port = 15671
management.ssl.cacertfile = /etc/ssl/groundca.pem
management.ssl.certfile = /etc/ssl/groundsrv.pem
management.ssl.keyfile = /etc/ssl/groundkey.pem
# management.ssl.honor_cipher_order = true
# management.ssl.honor_ecc_order = true
# management.ssl.client_renegotiation = false
# management.ssl.secure_renegotiate = true
#management.ssl.versions.1 = tlsv1.2
#management.ssl.ssl_options.ciphers = TLS_AES_256_GCM_SHA384
#management.ssl.ciphers.1 = ECDHE-ECDSA-AES256-GCM-SHA384
#management.ssl.ciphers.2 = ECDHE-RSA-AES256-GCM-SHA384
#management.ssl.ciphers.3 = ECDHE-ECDSA-AES256-SHA384
#management.ssl.ciphers.4 = ECDHE-RSA-AES256-SHA384
#management.ssl.ciphers.5 = ECDH-ECDSA-AES256-GCM-SHA384
#management.ssl.ciphers.6 = ECDH-RSA-AES256-GCM-SHA384
#management.ssl.ciphers.7 = ECDH-ECDSA-AES256-SHA384
#management.ssl.ciphers.8 = ECDH-RSA-AES256-SHA384
#management.ssl.ciphers.9 = DHE-RSA-AES256-GCM-SHA384
P-256 (secp256r1)
P-384 (secp384r1)
P-521 (secp521r1)