Self generate SSL Certificate for IIS6?

Hi guys is it possible to create your own SSL cert for IIS 6? If so does anyone have a link to a good guide on the web?

Thank!

John


Solution 1:

Yep, its pretty straight forward:

  1. Download and install the IIS 6 Resource Kit
  2. Select SelfSSL from the start menu, under programs->IIS Resources
  3. Read the instructions shown at the command prompt

To generate the cert, run selfssl with any of the options you need selected, an example command would be:

selfssl /N:CN=www.site.com /K:1024 /S:2874 /P:443 /V:365

This will create a cert for www.site.com, with a key size of 1024, for site 2874 in IIS, on port 443, valid for one year.

Note that this certificate will not be initially trusted by any browsers, as you are not a trusted authority.