Bug 1778856
| Summary: | No way to disable TLS v1.1 | ||
|---|---|---|---|
| Product: | OpenShift Container Platform | Reporter: | Rich Megginson <rmeggins> |
| Component: | Networking | Assignee: | Dan Mace <dmace> |
| Networking sub component: | router | QA Contact: | Hongan Li <hongli> |
| Status: | CLOSED ERRATA | Docs Contact: | |
| Severity: | high | ||
| Priority: | medium | CC: | aos-bugs, bbennett, dfediuck, dmace, fdelorey, lleistne, rmeggins, sradco |
| Version: | 3.11.0 | Keywords: | Security |
| Target Milestone: | --- | ||
| Target Release: | 3.11.z | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | 1778250 | Environment: | |
| Last Closed: | 2020-03-20 00:12:40 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | 1747461 | ||
| Bug Blocks: | |||
|
Comment 1
Rich Megginson
2019-12-02 16:44:14 UTC
Workaround is to use a custom router template. (In reply to Dan Mace from comment #2) > Workaround is to use a custom router template. By this do you mean provide an explicit list of supported and/or unsupported cipher suites in the ROUTER_CIPHERS env. var.? (In reply to Rich Megginson from comment #3) > (In reply to Dan Mace from comment #2) > > Workaround is to use a custom router template. > > By this do you mean provide an explicit list of supported and/or unsupported > cipher suites in the ROUTER_CIPHERS env. var.? Unfortunately, there is no such environment variable configuration for TLS in 3.11. Support was introduced in https://github.com/openshift/router/pull/35 to enable the v4 TLS API. What I mean is that in 3.11, the user can specify a custom haproxy config template and configure the min/max version manually, e.g. ssl-default-bind-options ssl-min-ver TLSv1.2 Can you please provide documentation on how to achieve this for 3.11? Verified with atomic-openshift-3.11.187-1.git.0.be0cfd4.el7 and the issue has been fixed. # oc set env dc/router SSL_MIN_VERSION=TLSv1.2 SSL_MAX_VERSION=TLSv1.3 # oc exec router-7-kb5vz -- grep ssl-min-ver haproxy.config ssl-default-bind-options ssl-min-ver TLSv1.2 ssl-max-ver TLSv1.3 # curl https://console.apps.0312-icn.qe.rhcloud.com -k -I --tlsv1.1 curl: (35) Peer reports incompatible or unsupported protocol version. # curl https://console.apps.0312-icn.qe.rhcloud.com -k -I --tlsv1.2 HTTP/1.1 200 OK Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2020:0793 |