Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Blocker
-
Resolution: Unresolved
-
Affects Version/s: 3.7.0
-
Fix Version/s: None
-
Component/s: Core
-
Labels:None
-
Acceptance Test - Add?:No
Description
To reproduce:
configure Openfire to require secure client connections.
Configure a client that has SSL but not TLS (eg Kopete) and try to connect.
Result: connection fails - nothing is logged.
Clients that support TLS can connect
I debuged this and saw there is a Problem with the SSL Chiphers: The DHE Chipers are broken. Other SSL Chiphers works without Problems.
Using:
openssl s_client -connect $Jabberserverhostname:5223 -cipher ECDHE-RSA-AES128-SHA it works.
If I use: openssl s_client -connect $Jabberserverhostname:5223 -cipher DHE-RSA-AES128-SHA
I get this:
CONNECTED(00000004)
depth=3 C = DE, O = Deutsche Telekom AG, OU = T-TeleSec Trust Center, CN = Deutsche Telekom Root CA 2
verify error:num=19:self signed certificate in certificate chain
verify return:0
After this the Connection dies.