Avatar of nigelbeatson
nigelbeatson
Flag for United Kingdom of Great Britain and Northern Ireland asked on

adding TLS support to our network

We have a Windows server based network with clients that use an internet browser to access a service provided by a third party for cloud storage.

They inform us that support for SSL is being ceased and that they will only be using the more secure TLS.

Can anyone advise what we need to do to make sure we can provide the TLS support requested??

Any advice much appreciated.

Many thanks.
OS SecurityWindows Server 2012Encryption

Avatar of undefined
Last Comment
nigelbeatson

8/22/2022 - Mon
SOLUTION
arnold

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
btan

Actually TLS is still SSL. The so called difference is in the version. E.g. TLS v1.0 is actually SSLv3.1, TLS v1.1 and v1.2 are SSL v3.2 and v3.3 respectively. I believe when you mentioned stop using SSL, it means not to use the vulnerable SSL version. As of current, wesk cipher of SSLv3.0 and below should minimally be disabled and go for current use of SSLv3.3 (TLSv1.2).
https://technet.microsoft.com/en-us/library/dn786446.aspx

In that case, you should enable the TLS 1.2 as required. I suggest iiscrypto tool that can help set Windows SChannel registries to do above mentioned.
https://www.nartac.com/Blog/post/2013/04/19/IIS-Crypto-Explained.aspx

Also if need be to request for a certificate to support TLS 1.2 or otherwise minimally TLSv1.0 due to service that can support at that lower version only...like Exchange server which most say the lower version is more stable.
So have make a new request from the web server e.g. IIS make give that Cert Service request to your internal CA or.3rd party CA to generate the certificate needed to refurnish.
nigelbeatson

ASKER
we are running Windows 2012 server with exchange server v2010. we have an Ssl certificate issued by rapid, which is about 2 years old.

we need to secure our browsers to work with an external 3rd party website who are the ones informing us that we need to make sure we can communicate with them using TLS, rather than Ssl.

does that help?

thanks
SOLUTION
Dave Baldwin

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
arnold

Browsers that are being aged/edged out IE 8 which has sslv3 and tls1.0 support many have started phasing out sslv3 support on their server through registry on Windows schannel/crypto OpenSSL.conf config changes !sslv3.... On Linux/Unix systems.
All of life is about relationships, and EE has made a viirtual community a real community. It lifts everyone's boat
William Peck
ASKER CERTIFIED SOLUTION
btan

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
nigelbeatson

ASKER
so many good, helpful answers. Many thanks to all.