How to Set Up SSL on IIS 7

Source: Internet
Author: User
Tags ssl certificate
Introduction

The steps for inserting ing Secure Sockets Layer (SSL) for a site are the same in IIS 7 and IIS 6.0, and include the following:

  • Get an appropriate certificate.
  • Create an HTTPS binding on a site.
  • Test by making a request to the site.
  • Optionally configure SSL options, that is, by making SSL a requirement.

This document provides some basic information on SSL, then shows how to enable SSL in eclipseveral different ways:

  • Using IIS Manager.
  • Using the AppCmd.exe command line tool.
  • Programmatically through Microsoft. Web. Administration.
  • Using WMI scripts.
SSL Configuration

The implementation of SSL changed from IIS 6.0 to IIS 7. in IIS 6.0 on Windows Server 2003, all SSL configuration was stored in the IIS metabase, and encryption/decryption occured in User mode (requiring a lot of kernel/user mode transitions ). in IIS 7, HTTP. sys handles SSL encryption/decryption in kernel mode, resulting in up to 20% better performance for secure connections in IIS 7 than that experienced in IIS 6.0.

Using SSL in kernel mode requires storing SSL binding information in two places. First, the binding is stored in %Windir% \ System32 \ inetsrv \ config \ applicationHost. config for your site. when the site starts, IIS 7 sends the binding to HTTP. sys, and HTTP. sys starts listening for requests on the specified IP: Port (this works for all bindings ). second, the SSL configuration associated with the binding is stored in the HTTP. sys configuration. useNetshCommand at a command prompt to view SSL binding configuration stored in HTTP. sys as in the following example:

netsh http show sslcert

When a client connects and initiates an SSL negotiation, HTTP. sys looks in its SSL configuration for the IP: Port pair to which the client connected. the HTTP. sys SSL configuration must include a certificate hash and the name of the certificate store before the SSL negotiation will succeed.

Troubleshooting Tip:If you're having trouble with an SSL binding, verify that the binding is configured in ApplicationHost. config, and that the HTTP. sys store contains a valid certificate hash and store name for the binding.

Choosing a Certificate

When choosing a certificate, consider the following: Do you want end users to be able to verify your server's identity with your certificate? If yes, then either create a certificate request and send that request to a known certificate authority (CA) such as VeriSign or GeoTrust, or obtain a certificate from an online CA in your intranet domain. there are three things that a browser usually verifies in a server certificate:

  1. That the current date and time is within the "Valid from" and "Valid to" date range on the certificate.
  2. That the certificate's "Common Name" (CN) matches the host header in the request. for example, if the client is making a request to http://www.contoso.com/, then the CN must also be http://www.contoso.com /.
  3. That the issuer of the certificate is a known and trusted CA.

If one or more of these checks fails, the browser prompts the user with warnings. if you have an Internet site or an intranet site where your end users are not people you know personally, then you shoshould always ensure that these three parameters are valid.

Self-signed certificates are certificates created on your computer. They're useful in environments where it's not important for an end user to trust your server, such as a test environment.

Using AppCmd

You cannnot request or create a certificate by using AppCmd.exe. You also cannot use AppCmd.exe to create an SSL binding.

Configure SSL Settings

You can use AppCmd.exe to configure a site to accept only server HTTPS connections by modifyingSslFlagsAttribute in the Access section. for example, you can configure this setting for the "Default Web Site" in the ApplicationHost. config file (for example, commitPath: APPHOST) by using the following command:

% Windir % \ system32 \ inetsrv> AppCmd set config "Default Web Site"-commitPath: APPHOST-section: access-sslFlags: Ssl

If successful, the following message is displayed:

Applied configuration changes to section "system. webServer/security/access" for "MACHINE/WEBROOT/APPHOST/Default Web Site" at configuration commit path "MACHINE/WEBROOT/APPHOST"

Note:To require 128-bit SSL, change the sslFlags valueSsl128.

The following example demonstrates how to view the <access/> section settings for the Default Web Site.SslFlagsAttribute has been set successfully.

%windir%\system32\inetsrv>AppCmd list config "Default Web Site" -section:access

Executing the command results in the following entry in the ApplicationHost. config file:

<system.webServer>
  <security>
    <access flags="Script, Read" sslFlags="Ssl" />
  </security>
</system.webServer>
Using WMI

You cannot request or create a certificate by using the WebAdministration WMI namespace.

Create an SSL Binding

The following script demonstrates how to create a new SSL binding and how to add the appropriate configuration for both HTTP. sys and IIS 7:

Set oIIS = GetObject("winmgmts:root\WebAdministration")

'''''''''''''''''''''''''''''''''''''''''''''
' CREATE SSL BINDING
'''''''''''''''''''''''''''''''''''''''''''''

oIIS.Get("SSLBinding").Create _
   "*", 443, "4dc67e0ca1d9ac7dd4efb3daaeb15d708c9184f8", "MY"
'''''''''''''''''''''''''''''''''''''''''''''
' ADD SSL BINDING TO SITE
'''''''''''''''''''''''''''''''''''''''''''''

Set oBinding = oIIS.Get("BindingElement").SpawnInstance_
oBinding.BindingInformation = "*:443:"
oBinding.Protocol = "https"
 
Set oSite = oIIS.Get("Site.Name='Default Web Site'")
arrBindings = oSite.Bindings
ReDim Preserve arrBindings(UBound(arrBindings) + 1)
Set arrBindings(UBound(arrBindings)) = oBinding
oSite.Bindings = arrBindings
Set oPath = oSite.Put_

Note: The certificate hash and store must reference a real, functional certificate on your server. If the certificate hash and/or store name are bogus, an error is returned.

Configure SSL Settings

The following script demonstrates how to set SSL settings by using the IIS 7 WMI provider. You can find this value in the IIS_Schema.xml file.

Const ssl = 8
Set oIIS = GetObject ("winmgmts: root \ WebAdministration ")
Set oSection = oIIS. Get (_
"AccessSection. Path = 'machine/WEBROOT/apphost', Location = 'default website '")
OSection. SslFlags = oSection. SslFlags OR SSL
OSection. Put _

IIS ManagerObtain a Certificate 

Select the server node in the treeview and double-clickServer CertificatesFeature in the listview:

ClickCreate Self-Signed Certificate...InActionsPane.

Enter a friendly name for the new certificate and clickOK.

Now you have a self-signed certificate. the certificate is marked for "Server Authentication" use; that is, it uses as a server-side certificate for http ssl encryption and for authenticating the identity of the server.

Create an SSL Binding

Select a site in the tree view and clickBindings...InActionsPane. This brings up the bindings editor that lets you create, edit, and delete bindings for your Web site. ClickAdd...To add your new SSL binding to the site.

The default settings for a new binding are set to HTTP on port 80. SelectHttpsInTypeDrop-down list. Select the self-signed certificate you created in the previous section fromSSL CertificateDrop-down list and then clickOK.

Now you have a new SSL binding on your site and all that remains is to verify that it works.

Verify the SSL Binding

In the Actions pane, under Browse Web Site, click the link associated with the binding you just created.

Internet Explorere (IE) 7 will display an error page because the self-signed certificate was issued by your computer, not by a trusted Certificate Authority (CA ). IE 7 will trust the certificate if you add it to the list of Trusted Root Certification Authorities in the certificates store it on the local computer, or in Group Policy for the domain.
ClickContinue to this website (not recommended).

Configure SSL Settings

Configure SSL settings if you want your site to require SSL, or to interact in a specific way with client certificates. click the site node in the tree view to go back to the site's home page. double-clickSSL SettingsFeature in the middle pane.

Summary

In this walkthrough, we successfully used the command-line tool AppCmd.exe, the scripting provider WMI, and IIS Manager to set up SSL on IIS 7.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.