0

I have seen certain web applications where we can access by typing a simple name such as "accounts" in the URL field rather than typing a complete domain name "www.xxx.yyy\accounts".

I have a local area network containing around 150 computers and with a web server running on windows server 2008 R2, which can be accessed by outside and has a proper domain name. I want to publish few web applications to be used by the computers in the LAN. This should not involve any internet connectivity and users must be able to access the web apps by just typing a simple name in the URL field of the browsers. I know this is possible but I don't know how and what to read. Please give me some information. Must I establish LLMNR, or else NetBIOS, or even achieve this through the prevailing DNS configuration?

Thanks in advance.

Bhargav Rao
  • 50,140
  • 28
  • 121
  • 140
Zerone
  • 566
  • 4
  • 10
  • 24

1 Answers1

1

If you have a Windows domain this should just work (e.g. http://computerName/), but if you won't you can establish a WINS server on the network - and generally that will help client PCs resolve names. Otherwise you can use an existing DNS if all your client PCs point to a local DNS server.

Aaron Romine
  • 1,539
  • 1
  • 9
  • 8
  • Yes every computer is connected to the same windows domain and pointed to the same DNS server. But I don't want users to use the Lengthy http://computername/ I just want to use a simple word to resolve the web app. If I use existing DNS will that block computers access internet? OR if I use WINS server will that harm the DNS resolution? Thanks for your fast answer. – Zerone Jul 19 '12 at 15:34
  • 1
    You can use DNS and WINS in combination to resolve names. E.g. in the WINS server console - it will show automatic registration, but you can add other names to resolve other computers too. For simple names look at using the WINS server. Here's a good place to start with info: http://technet.microsoft.com/en-us/library/cc731480 – Aaron Romine Jul 19 '12 at 18:27
  • Thanks a lot Aaron Romine, this is very helpful. – Zerone Jul 22 '12 at 16:19