Understood, I will have to wait till later tonight to test it. Thanks.
Main Topics
Browse All TopicsHi All,
I have two Windows Server 2008 servers serving content through a software NLB. Currently I serve a number of sites and one secure site on one public IP address. The public IP address is natted to a Private IP address which the two servers receive requests on, through MS NLB. Each of the servers has a single Primary Private IP address.
I have seen some blogs etc out there that hint that you can use two SSL certificates on a single IIS server, but I have tried numerous combinations of IP addressing and manual edits in the config files to only receive 404 errors, or have both sites server the same content.
I understand that SSL binds to a port/IP address combination, and have tried all different kinds of binding changes in the ApplicationHost file. But as yet without success.
Does anyone know if this is in fact possible? Or is the NLB part of the setup going to mess it all up no matter what? I have access to more IP addresses and can change any firewall rules I wish.
Any help much appreaciated.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
whew... finally got a chance to test this (things went a bit crazy at work). And yes you are right, it works.
Setup wise I was also unsure if I had to add additional ip addresses to the NLB cluster properties, or to the LAN interface properties of each of the machines. I found it easier to just add the ip addresses to the lan connection properies. They would then just appear in the nlb properties (like magic :) ). I guess I would not be saying that if I had a dozen machines in the farm.
The bit that took some figuring our was that I had to bind to the NLB cluster IP addresses, and in order to do this I had to type them in manually in the binding window, since they do not appear in the dropdown.
But, all this said, the thing that was stuffing up my initial testing was that I was trying to do it all on the same IP addresses.
Thanks heaps jakielam, the points are all yours buddy.
Business Accounts
Answer for Membership
by: jackielamPosted on 2008-06-03 at 23:32:26ID: 21707411
Hi jeremyu. For IIS, yes you can have two/multiple SSL install to different site entries without any issue, but one thing that you need to concern is that each SSL would need to associate with a separate Static IP, for example, you have 123.com and abc.com hosted on your IIS server, and both of them has their own SSL, then you would need to assign two different static ip to them, say
192.1.1.12 for 123.com
192.1.1.13 for abc.com
But remember one thing is that these two Static IP must not be used by other IIS entries, that's mean you can use 192.1.1.1 to 192.1.1.11 and 192.1.1.14 to 192.1.1.254 for other IIS entries. Hope this help you understand the logic. ^.^