Chris,

On 8.10.2013 17:40, Christopher Schultz wrote:
-----BEGIN PGP SIGNED MESSAGE-----
Can anyone assist me in understanding why it is failing for the
first time? And is there any way I can force the Tomcat not to
select this cipher suite? Or any other way that I can resolve this
issue.

See the Connector documentation, specifically the "cipherSuites"
attribute. Unfortunately, Tomcat's cipherSuites configuration is only
explicit... you can't say something like "defaults without
TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA".

I guess you mean "ciphers" (for BIO and NIO connectors) and "SSLCipherSuite" (for APR connector).

Here are examples for both.

E.g.1.

   ciphers="SSL_RSA_WITH_3DES_EDE_CBC_SHA,
            TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA,
            TLS_RSA_WITH_AES_256_CBC_SHA,
            TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,
            TLS_RSA_WITH_AES_256_CBC_SHA256,
            TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384"

E.g.2.

SSLCipherSuite="EDH+aRSA:3DES:!RC4:!aNULL:!eNULL:!LOW:!MD5:!EXP:!PSK:!SRP:!DSS"


-Ognjen

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to