DNS lookup in internal network

0

I am having trouble with figuring out how to change the lookup of my internal website. As I am a software developer not a network specialist so I can't seem to figure out how to go about this or where to start.

So here is my issue. I have an internal website and I have it setup on my serer using IIS 8.0. To access this website using a client computer I need to type the server's IP address into the browser address bar.

What I am looking to do is change the DNS lookup (I think it is a DNS lookup) so I can type in a name for the site (eg. "operations"). When the user types in operations into the browser it will navigate to my website. Any help is appreciated.

I am using Windows Server 2012, Windows 7 64-bit, and Google Chrome.

Chase Ernst

Posted 2015-01-19T20:31:42.857

Reputation: 131

Could this help: http://technet.microsoft.com/en-us/library/cc779029%28v=ws.10%29.aspx ..

– txtechhelp – 2015-01-20T01:31:42.163

Answers

1

For this to work, you need to have a DNS server, and the DHCP server should give your server IP address as DNS server.

The DNS server itself then has to provide the domain to IP translation, and everything else it should get from the internet. If you use a router with DHCP, it is likely to also use the ISP's DNS server, and thus your clients will never get your domain to ip translation done correctly.

LPChip

Posted 2015-01-19T20:31:42.857

Reputation: 42 190

From my understanding we have a DNS server at our office – Chase Ernst – 2015-01-19T21:34:53.390

Then configure your domain entry in that DNS server and make it point to your server's ip. – LPChip – 2015-01-19T21:35:38.077

This is what I need help with. I don't know much about network. I do not know how to make the DNS server point to the server's IP. – Chase Ernst – 2015-01-19T21:44:52.167

Go to administrative tools->DNS server. From there simply add the domain and ip. It is pretty straight forward, really. – LPChip – 2015-01-20T11:26:10.207

Either deploy a hosts file edit to redirect the domain of your choice to the IP address using a GPO, or simply add a new DNS record on the server.. It's really, really simple. https://www.youtube.com/watch?v=WYj7KSIn2Xo

– Samuel Nicholson – 2015-01-21T12:42:13.667

@SamuelNicholson I recommend against using GPO with hosts file. You only want to be using a hostfile to deny access, not grant access. If for some reason a pc is not part of the network anymore, that hosts file will still be there, and no one will ever find it again, because its not common practice. A DNS Server really is the way to go, and its simple as your video shows. – LPChip – 2015-01-21T12:47:23.183

@LPChip I completely agree, plus if OP can't add a DNS entry I don't think his knowledge of the hosts file or GPO's for that matter will be exemplary. – Samuel Nicholson – 2015-01-21T12:54:27.837

Sorry I was not able to reply for a while. So this is a forward, or a reverse lookup? – Chase Ernst – 2015-01-26T16:30:33.997

A forward lookup. You cannot even do a reverse lookup. A reverse lookup is only something your ISP can set for you, but you don't need that anyway. – LPChip – 2015-01-26T19:25:26.030