Discuss Intranet Site Question in the DNS forum on Dev Shed. Intranet Site Question DNS forum discussing issues, servers, and configurations. The Domain Name System (DNS) is what the Internet uses to translate website names into IP addresses.
Receive the tools necessary to be the rock star of your field. Our 12-month program teaches you the evolving world of multi-channel marketing as well as the complex issues and opportunities found in the industry.
ASP Free and Iron Speed Designer are giving away $5,500+ in FREE licenses. Iron Speed's RAD CASE toolset can save up to 80% of your coding time. One free license per week, one perpetual license per month! Download and Activate to enter!
Web development can be a daunting task, even for specialists. There is a lot of information to absorb and a lot of technologies to learn in order to manage a superior website. When trying to learn the ropes, developers need a reliable source to introduce new ideas that can be easily implemented. When working on large projects, even web veterans may run into a technology or an aspect of a technology that they are unfamiliar with.
Posts: 1
Time spent in forums: 6 m 47 sec
Reputation Power: 0
Intranet Site Question
Hello,
So I have an intranet site setup and I want my internal users to only have to type the word intranet in their browsers in stead of the entire server name and port number (example: intranet:8080/share) I can't remember if this is something I need to in DNS or in the GPO.
Posts: 24
Time spent in forums: 2 h 49 m 37 sec
Reputation Power: 0
You'll be able to only type the name if you:
1) have a record created in DNS
2) your windows computer is configured with a domain suffix that matches the domain where this record resides.
For port numbers, as discussed, not with DNS. On the web server, you need two web sites, one that listens on port 80 and the other that listens on port 8080. On the website that listens to port 80, use one of the following redirect methods:
1) on a default.htm page, do a redirect using the META tag approach.
2) have the webserver do a redirect to the other website (configured in the webserver app)
3) if you are running php or .net, do the redirect in code.
Posts: 10,750
Time spent in forums: 5 Months 9 h 49 m 29 sec
Reputation Power: 7951
Quote:
Originally Posted by [JM]
1) on a default.htm page, do a redirect using the META tag approach.
2) have the webserver do a redirect to the other website (configured in the webserver app)
3) if you are running php or .net, do the redirect in code.
4) Configure the :80 website as a reverse proxy to the :8080 site.
5) Since you must necessarily have something running on port 80 anyways, put your site there to begin with.
Posts: 26
Time spent in forums: 13 h 3 m 9 sec
Reputation Power: 0
Re: Intranet Site Question
For users on the Local Area Network, add the desired name to the HOSTS file with the appropriate private address. You can use any shortcut name you desire as the HOSTS file will take precedence over DNS.