好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

Windows系统中IIS启用TLS 1.2

image.png

5、在文件TLS 1.1和TLS 1.2分别 右键 >> 新建 >> 项 >> 新建Server, Client

image.png

6、.在新建的Server和Client中都新建如下的项(DWORD 32位值),总共4个

名称:DisabledByDefault [Value = 0]

名称:Enabled [Value = 1]

image.png

image.png

image.png

image.png

二、直接导入注册表文件方法

ps:导入注册表文件中的双引号是英文字母的双引号,不是中文的双引号

Bash

Windows Registry Editor Version 5.00 
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols][HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0][HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Client] "DisabledByDefault"=dword:00000000 

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1][HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Client] "DisabledByDefault"=dword:00000000 
"Enable"=dword:00000001[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Server] "DisabledByDefault"=dword:00000000 
"Enable"=dword:00000001 

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2][HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client] "DisabledByDefault"=dword:00000000 
"Enable"=dword:00000001 
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server] "DisabledByDefault"=dword:00000000 
"Enable"=dword:00000001

三、 傻瓜式操作方法

查看更多关于Windows系统中IIS启用TLS 1.2的详细内容...

  阅读:3392次