Skip to content

Instantly share code, notes, and snippets.

@ccondry
Created December 15, 2020 19:19
Show Gist options
  • Save ccondry/9ec816c6312aafac0c0d91fea4633c9a to your computer and use it in GitHub Desktop.
Save ccondry/9ec816c6312aafac0c0d91fea4633c9a to your computer and use it in GitHub Desktop.
enable TLS 1.1 and 1.2 on Windows Server 2008 R2
check supported protocols on LDAP: "nmap -p 636 --script +ssl-enum-ciphers ad1.dcloud.cisco.com"
info from https://community.progress.com/s/article/How-to-Enable-TLS-1-1-TLS-1-2-on-Windows-Server-2008-R2
create new keys "TLS 1.1" and "TLS 1.2" under HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols
create new keys "Client" and "Server" under both new TLS keys
create DWORD value "DisabledByDefault" = 0 under each Client and Server folder (so 4 times)
create DWORD value "Enabled" = 1 under each Client and Server folder (so 4 times)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment