So here's the deal: I have a domain (say, mydomain.net) that I want to create subdomains for. Specifically, I want, say, crm.mydomain.net to map to xxx.yyy.zzz.www:5555 where the letters refer to an IP address. Is there any way to do this?
|
| |||
|
feedback
|
|
Ports are not part the "normal" DNS system. There's no way to add a port to a A or CNAME record. Side Note: Some software supports SRV records which do include a port number. This is very uncommon and I don't know of any web browsers which support this (which is probably what you're asking about). If the websites are one the same machine, you can use host headers to differentiate. I'm guessing you've got Dynamics CRM installed; which defaults to port 5555; you can add an additional binding in IIS for port 80 with a specific host header. | ||||
|
feedback
|
|
if your app on 5555 is web-based : create an "A" record in dns for crm.mydomain.net to point to xxx.yyy.zzz.www on the machine that is xxx.yyy.zzz.www setup a website on port 80. use redirection (from the webserver or from the default doc) to automatically do a html redirect to http://crm.mydomain.net:5555 in a defualt doc, it would look like :
| |||||
feedback
|