23 November,2018 by Tom Collins
Question : I have an issue from a developer about an error on the app which may be related to TLS version support by SQL Server From what I can see this could be related to a TLSV1.0 version issue. Does SQL2016 support TLSV1.0 ? how can I view which cipher suites are available on both the server hosting SQL Server and on the desktop connecting to SQL Server
Answer: Microsoft SQL Server 2016 supports TLS 1.1 and TLS 1.2 . SQL Server 2016 and SQL Server 2017 on Windows versions ship with TLS 1.0 to TLS 1.2 support. You have to disable TLS 1.0 and 1.1 if you want to use only TLS 1.2 for client-server communication.
To view the cipher suites available to TLS there is a Powershell cmdlet which returns a list , you should be able to use this on Windows 10 and Windows 2016
Get-TLSCipherSuite | ft name,certificate,cipherlength
This is only a preview. Your comment has not yet been posted.
As a final step before posting your comment, enter the letters and numbers you see in the image below. This prevents automated programs from posting comments.
Having trouble reading this image? View an alternate.
Posted by: |