127.0.0.1 is the standard IP address used for a loopback network connection.127.0.0.1/32 block is assigned for use as the Internet host loopback address. A datagram sent by a higher level protocol to an address anywhere within this block should loop back inside the host.
This is ordinarily implemented using only 127.0.0.1/32 for loopback, but no addresses within this block should ever appear on any network anywhere.
This means that if you try to connect to 127.0.0.1, you are immediately looped back to your own machine.
If you telnet, ftp, etc … to 127.0.0.1, you are connected to your own machine.
In other words, 127.0.0.1 is you . In other words, 127.0.0.1 is you.
For example, if your system was named “mypc”, and you attempted to telnet to 127.0.0.1, you would see:
# telnet 127.0.0.1
Connecting To 127.0.0.1…
Connected to mypc
Escape character is ‘^]’.
Convincing newbie’s to connect to 127.0.0.1 is a frequent joke on the Internet.
Another name for 127.0.0.1 is localhost . Although 127.0.0.1 is the most commonly utilized address for localhost, any IP address in the 127.*.*.* range should also function in the same manner.