File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Sockets and Internet Protocols and the fly likes Very Basic Question Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Sockets and Internet Protocols
Reply Bookmark "Very Basic Question" Watch "Very Basic Question" New topic
Author

Very Basic Question

Angela D'souza
Ranch Hand

Joined: Jan 16, 2002
Posts: 469
What is difference between Server Name and DNS?
Thanks,
Angela
ryan headley
Ranch Hand

Joined: Jun 28, 2000
Posts: 156
Server name is the actual "name" of a server.
DNS (Domain Naming System) is a method of storing the IP addresses of a server and tieing it to that servers name.
Example:
On a local network using the basic TCPIP tools, you can "ping" a machine.
Each machine on this network has an IP address with it.
Say I have a machine with an address of 10.64.200.12, say this machines name is "joe"
If I type "ping joe" I get a response back that contain the address 10.64.200.12. I got away with not having to know its address only its name.
My DNS server has a database of all the machine names and what address they belong to.
Therefore DNS looks up a server name....basically...theres much more to it than that but that was quick and dirty.


Ryan Headley<br /><a href="http://www.sudovi.com" target="_blank" rel="nofollow">http://www.sudovi.com</a>
 
 
subject: Very Basic Question
 
MyEclipse, The Clear Choice