In Windows Server 2008 R2, and in an Active Directory Environment, how can I add an alias hostname to DNS, so that all workstation will know the internal ip address of that alias hostname?
I have a Linux web server, that contains some intranet resources.
Instead of accessing this server this way:
https://192.168.1.10/
I want users to be able to access this way:
https://someAliasNameWithoutAnyDots/
Basically, I'm trying to achieve, with Windows DNS, what you can achieve very easily in each workstation's host file, but I want to do it in one place so that all computers (that get their dhcp/dns from Windows) will know the alias hostname of this linux server (which differs from this linux server's actual hostname).
How do you do this in the DNS GUI of Windows Server 2008 R2? It seems like it only deals in fully qualified domain names, but in my case I don't want ".com" (or .anything) to be included in the https address.
Again, this is easily achieved by going into each workstation and editing its host file. The goal here is to avoid doing all that work and to do it in one place instead.