zoukankan      html  css  js  c++  java
  • How to enable TLS 1.2 on Windows Server 2008 R2

    Problem

    How to enable TLS 1.2 on Windows Server 2008 R2?

    Resolution

    QuoVadis recommends enabling and using the TLS 1.2 protocol on your server.  TLS 1.2 has improvements over previous versions of the TLS and SSL protocol which will improve your level of security.  By default, Windows Server 2008 R2 does not have this feature enabled.  This KB article will describe the process to enable this.

      1. Start the registry editor by clicking on Start and Run. Type in "regedit" into the Run field (without quotations).
      1. Highlight Computer at the top of the registry tree.  Backup the registry first by clicking onFile and then on Export.  Select a file location to save the registry file.


    Note:

         You will be editing the registry.  This could have detrimental effects on your computer if done incorrectly, so it is strongly advised to make a backup.



      1. Browse to the following registry key:
        HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlSecurityProvidersSCHANNELProtocols
      1. Right click on the Protocols folder and select New and then Key from the drop-down menu. This will create new folder.  Rename this folder to TLS 1.2.
      1. Right click on the TLS 1.2 key and add two new keys underneath it.
      1. Rename the two new keys as:
        • Client
        • Server
      1. Right click on the Client key and select New and then DWORD (32-bit) Value from the drop-down list.
      1. Rename the DWORD to DisabledByDefault.
      1. Right-click the name DisabledByDefault and select Modify... from the drop-down menu.
      1. Ensure that the Value data field is set to 0 and the Base is Hexadecimal.  Click on OK.
      1. Create another DWORD for the Client key as you did in Step 7.
      1. Rename this second DWORD to Enabled.
      1. Right-click the name Enabled and select Modify... from the drop-down menu.
      1. Ensure that the Value data field is set to 1 and the Base is Hexadecimal. Click on OK.
      1. Repeat steps 7 to 14 for the Server key (by creating two DWORDs, DisabledByDefaultand Enabled, and their values underneath the Server key).
    1. Reboot the server.

    Your server should now support TLS 1.2.

    Note: This article cannot be used on a Windows Server 2003 (IIS 6).  Windows Server 2003 does not support the TLS 1.2 protocol.

    Reverting Back

    If you make a mistake or something just isn't right, you can revert back to your previous registry settings by opening the Registry Editor and importing the backup you made in step x.

  • 相关阅读:
    spring与hibernate整合使用properties文件分离数据库连接设置
    Android的Selector使用
    Linux中的软链接、硬链接
    JDK自带线程池解析
    shell的控制流程语句
    [转] 对于javascript的function的总结
    [#转#]经典的帖子:多态分析1
    [转]javascript 中数组使用方法汇总
    struts中设置指令牌
    关于指令牌一个有趣的帖子
  • 原文地址:https://www.cnblogs.com/waw/p/5738812.html
Copyright © 2011-2022 走看看