What the 127.0.0.1 IP Address Means

Behind all the names on the urls of InternetThe other popular usage of the local host IP
websites are a series of numbers called IPaddress are gaming servers, which are
(Internet Protocol) addresses. IP stands forinterconnected to local hosts. By using the local
Internet Protocol, and constitute the primaryhosts, the process and the flow of information
network layer for use on the Web.becomes more streamlined and efficient.
The 127.0.0.1 IPBecause it functions as a loopback, this IP address
This particular IP address, also called a local host,cannot be used in any network element or node.
is the basis for which loopback networkTesting the Loopback Properties of 127.0.0.1
connections are processed. Loopback means goingYou do not need to be a computer programmer
back, and that is what 127.0.0.1 does, because it isto test the loopback function of this address. You
the address of your machine. Using telnet, ftp, orcan go to the command prompt of your
try in any way to get to 127.0.0.1, you will beoperating system, and at the c:\ type the
transported back to the host machine, yours.following: "ping 127.0.0.1". After hitting the Enter
However, it is only the initial three numbers (127)key, you will get an answer like "Reply from
that are needed; use any number combination127.0.0.1...".
with 127 and the result will be the same.If you type in "ping localhost" instead of the
A frequent joke among programmers is to getnumbers, the result would be the same, as
the greenhorn to connect to this IP address.localhost and 127.0.0.1 are the same.
However, in reality the IP address has seriousYou can also try it on telnet: assuming that the
functions.computer assigned to you has the name "Dan"
Uses and Purposeyou will get the following result:
There are several practical uses for this IP# telnet 127.0.0.1
address. The most common example would for aTrying 127.0.0.1...
software developer or network systemsConnected to dan
administrator to try out new applications orEscape character is '^]'
experiment with unique set ups. This can also beCurrently IPv4 is the standard in use on the
used by programmers who design software thatInternet today. Aside from 127.0.0.1, other
talks to each other through the computer.reserved addresses are 10.0.0.0/8 (for private
This IP address is also used for beta testing anetworks), 169.254.0.0/16 (for link local),
host of web applications, from Java applets,Others are 192.88.99.0/24 (relays from IPv6 to
Active X controls to web browsers.UPv4), 255.255.255 (for broadcast), 224.0.0.0/4
It usually begins with the client sending out afor Multicasts (former Class D network), 240.0.0.0
message to server, which would be possible only4 for Class E Network, 192.0.2.0/24 for
if the 127.0.0.1 address is used. The result wouldDocumentation and example code and 198.18.0.0
be, if a web browser were to relay the request,15 for Network benchmark tests; 172.16.0.0/12 is
a return to the host page of the sitealso used for private networks.