Skip to content

Commit 163873d

Browse files
committed
Update default TLS cipher for dev config to use TLS12 or higher
The default cipher for the default developer config is ANY_TLS12. This restricts TLS communications to those channels to just TLS 1.2 ciphers and so does not allow people to connect clients with TLS 1.3. This is unnecessarily restrictive and so we should use ANY_TLS12_OR_HIGHER instead.
1 parent 0e18f17 commit 163873d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

incubating/mqadvanced-server-dev/20-dev-tls.mqsc.tpl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
* © Copyright IBM Corporation 2018, 2019
1+
* © Copyright IBM Corporation 2018, 2022
22
*
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -14,5 +14,5 @@
1414
* limitations under the License.
1515

1616
* Set the cipherspec for dev channels
17-
ALTER CHANNEL('DEV.APP.SVRCONN') CHLTYPE(SVRCONN) SSLCIPH(ANY_TLS12) SSLCAUTH(OPTIONAL)
18-
ALTER CHANNEL('DEV.ADMIN.SVRCONN') CHLTYPE(SVRCONN) SSLCIPH(ANY_TLS12) SSLCAUTH(OPTIONAL)
17+
ALTER CHANNEL('DEV.APP.SVRCONN') CHLTYPE(SVRCONN) SSLCIPH(ANY_TLS12_OR_HIGHER) SSLCAUTH(OPTIONAL)
18+
ALTER CHANNEL('DEV.ADMIN.SVRCONN') CHLTYPE(SVRCONN) SSLCIPH(ANY_TLS12_OR_HIGHER) SSLCAUTH(OPTIONAL)

0 commit comments

Comments
 (0)