8fort8
asked on
Port conflict
I have a domain behind a cisco rv325 router. There are 2 VMs 1 running exchange and 1 running essentials experience on the dc. Essentials is integrated with exchange. Both need to be accesses through port 443. How do I point the router to allow access to both?
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
After more digging what I was looking for was a reverse proxy server. That will allow you to host 2 severs behind 1 public ip address. I found the best answer at server fault thanks to vdboor
BIG NOTE here it helps to ask the right question if you want the right answer. The answer was easy to find I just asked the question poorly.
For IIS 7.5, Microsoft provides official modules for this!
URL Rewrite: http://www.iis.net/download/URLRewrite
Reverse proxy: http://www.iis.net/download/ApplicationRequestRouting
In the site settings, you'll get an "URL Rewrite" icon.
Open it
right click on the "inbound rules list"
Select "Add Rule(s)"
Choose "Reverse proxy"
In this dialog you can enter the hostname + port to forward to. After adding the rule, opening the edit dialog offers more customizations.
URL Rewrite: http://www.iis.net/download/URLRewrite
Reverse proxy: http://www.iis.net/download/ApplicationRequestRouting
In the site settings, you'll get an "URL Rewrite" icon.
Open it
right click on the "inbound rules list"
Select "Add Rule(s)"
Choose "Reverse proxy"
In this dialog you can enter the hostname + port to forward to. After adding the rule, opening the edit dialog offers more customizations.
BIG NOTE here it helps to ask the right question if you want the right answer. The answer was easy to find I just asked the question poorly.
ASKER