How to create a self-signed wildcard SSL certificate for IIS 6? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T00:54:43Zhttp://stackoverflow.com/feeds/question/474609http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/474609/how-to-create-a-self-signed-wildcard-ssl-certificate-for-iis-60How to create a self-signed wildcard SSL certificate for IIS 6?phloopy2009-01-23T21:21:21Z2009-10-21T19:09:18Z
<p>I'm trying to create a self-signed wildcard SSL certificate for use on a number of development and test servers running IIS 6. Following various guides has led to a couple ways of generating the certificates, but I haven't had any luck getting it to work. The most successful ways I've had were following <a href="http://beyondintegration.blogspot.com/2008/06/self-signed-certificates-how-to-get.html" rel="nofollow">this OpenSSL guide</a> and using makecert.exe like so:</p>
<pre><code>makecert.exe -r -b 01/01/2009 -e 01/01/2042 -sr LocalMachine -ss MY -a sha1 -n CN="*.example.com" -sky exchange -pe -eku 1.3.6.1.5.5.7.3.1 -sy 12 -sp "Microsoft RSA SChannel Cryptographic Provider" wildcard.cer
</code></pre>
<p> </p>
<p>Both of which generate certificates that IIS 6 will accept, but when I actually try to view the site I get the following error in firefox:</p>
<blockquote>
<h2>Data Transfer Interrupted</h2>
<p>The connection to dev.example.com was interrupted while the page was loading.</p>
</blockquote>
<p>IE just gives:</p>
<blockquote>
<h2>Internet Explorer cannot display the webpage</h2>
<p>Most likely causes:</p>
<ul>
<li>You are not connected to the Internet.</li>
<li>The website is encountering problems.</li>
<li>There might be a typing error in the address.</li>
</ul>
</blockquote>
<p>This error happens whether I try to access it by domain name, machine name, localhost, local ip, or loopback ip.</p>
<p>So...how can I create a self-signed wildcard cert that IIS 6 will work with? Or how can I fix the problems I'm experiencing with the ones I've already created?</p>
http://stackoverflow.com/questions/474609/how-to-create-a-self-signed-wildcard-ssl-certificate-for-iis-6/474629#4746290Answer by Khnle for How to create a self-signed wildcard SSL certificate for IIS 6?Khnle2009-01-23T21:25:34Z2009-01-23T21:25:34Z<p>Did you realize that you would need to change from "example.com" to some thing more appropriate to your situation ("localhost" might be one of them during testing).</p>
http://stackoverflow.com/questions/474609/how-to-create-a-self-signed-wildcard-ssl-certificate-for-iis-6/474649#4746490Answer by mson for How to create a self-signed wildcard SSL certificate for IIS 6?mson2009-01-23T21:30:01Z2009-01-25T23:52:29Z<p>For IIS 7 - there is a wzard to do this. It takes about 30 seconds to setup.</p>
<p>For IIS 6 - it's a bit trickier. It takes about 30 minutes to setup.</p>
<p>Which one are you using?</p>
<p>I strongly recommend moving to IIS 7 - it is very foreign at first, but they've made a lot of improvements.</p>
<p>Given that you probably can't upgrade to IIS 7, I had to do the following to implement what you want in IIS 6.</p>
<p>1) create certificate server
2) generate request
3) grant request
4) install certificate</p>
<p>It's a bit of a pain to setup the certificate authority server, but it comes with Windows Server and the walkthrough is pretty straight forward.</p>
http://stackoverflow.com/questions/474609/how-to-create-a-self-signed-wildcard-ssl-certificate-for-iis-6/514319#5143192Answer by MattGWagner for How to create a self-signed wildcard SSL certificate for IIS 6?MattGWagner2009-02-05T02:37:56Z2009-02-05T02:37:56Z<p>You can use the IIS 6 Resource Kit provided by MS, an command line app called SelfSSL. It can generate the SSL key and import it into your IIS installation.</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=56FC92EE-A71A-4C73-B628-ADE629C89499&displaylang=en" rel="nofollow">IIS 6 Resource Kit</a></p>
http://stackoverflow.com/questions/474609/how-to-create-a-self-signed-wildcard-ssl-certificate-for-iis-6/1602955#16029550Answer by phloopy for How to create a self-signed wildcard SSL certificate for IIS 6?phloopy2009-10-21T19:09:18Z2009-10-21T19:09:18Z<p>We discovered that the Certificate Authority wasn't being trusted because of domain settings and was causing the errors. We ended up deploying a star cert generated by a trusted CA and that cleared up the problems.</p>