In IIS 7.5, which is installed on Windows 2008 R2 servers, only SSL 3.0 and TLS 1.0 are enabled for HTTPS encryption by default. To enable TLS 1.1 and TLS 1.2 and disable the insecure SSL 3.0 protocol, add the following keys to the Registry of the server:

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0\Server]

"Enabled"=dword:00000000

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Server]

"DisabledByDefault"=dword:00000000

"Enabled"=dword:ffffffff

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Server]

"DisabledByDefault"=dword:00000000

"Enabled"=dword:ffffffff

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server]

"DisabledByDefault"=dword:00000000

"Enabled"=dword:ffffffff

After a reboot, IIS should be accepting TLS 1.2 connections.

 

From: https://basics.net/2015/10/06/iis-7-5-how-to-enable-tls-1-1-and-tls-1-2/

最新文章

  1. 使linux服务器默认使用中文字符集zh_CN.UTF-8
  2. java程序链接到sql server数据库
  3. Atitit  循环(loop), 递归(recursion), 遍历(traversal), 迭代(iterate).
  4. 团队作业-第一周-NABCD竞争性需求分析
  5. 通过生产者消费者模式例子讲解Java基类方法wait、notify、notifyAll
  6. 使用Eclipse调试PHP程序
  7. python--函数式编程--9
  8. 类handler
  9. ripple
  10. python绝技 — 使用PyGeoIP关联IP地址和物理位置
  11. H5投放在朋友圈广告做压力测试
  12. wget实例
  13. 关于jqGrid组件数据显示不出问题
  14. Kubernetes理论基础
  15. 【Codeforces 1137B】Camp Schedule
  16. C#基础--------------------C#正则表达式
  17. vue生成路由实例
  18. adnanh webhook 框架 hook rule
  19. November 15th 2016 Week 47th Tuesday
  20. uGUI知识点剖析之AutoLayout

热门文章

  1. python脚本后台执行
  2. Revit Family API 找到实体某一方向上的面。
  3. Modbus TCP和Modbus Rtu协议的区别 转
  4. NSArray进行汉字排序
  5. C#编程(四十二)----------委托和事件
  6. Linux isql
  7. .NET:自定义配置节
  8. poj 3071 Football(概率dp)
  9. 关于 java.lang.IllegalStateException: invocation
  10. java高分局之jstat命令使用(转)