Is it always possible to ping localhost and it resolves to 127.0.0.1?
I know Windows Vista, XP, Ubuntu and Debian do it but does everyone do it?
|
|
|
Any correct implementation of TCP/IP will reserve the address 127.0.0.1 to refer to the local machine. However, the mapping of the name "localhost" to that address is generally dependent on the system |
|||||||||||||||
|
|
127.0.0.1 is reserved in any IP stack for the local host. "localhost" as a host name is not guaranteed to be there. If the host/DNS settings are misconfigured, localhost will not resolve. Example on a debian box:
|
|||||
|
|
No.
For a start Secondly, there's nothing to say that you can always ping 127.0.0.1. As an example (on a unix system) try the following:
As cruizer said, 127.0.0.1 (if it exists) is defined to be the local machine. But it doesn't have to exist. |
|||
|
|
|
The pedantic answer (sorry, Greg :), is to read RFC 3330:
(The "ordinarily" above should probably be read as "often" - most current operating systems support using all of 127.0.0.0/8 as loopback.) With regards to whether "localhost" always resolves to 127.0.0.1 - he is correct, it's generally the same, but technically implementation specific:
|
|||
|
|
|
If the DNS servers your client is connected to is following rfc1912 then yes, localhost should resolve to 127.0.0.1.
|
|||
|
|
I think localhost pretty much resolves to 127.0.0.1 for most platforms but all IPs that start with 127...* resolve to localhost as well. Try pinging 127.255.255.254 and it'll still respond. |
|||||||
|
|
In theory, there are cases where it might not exist. In practice, it's always there. |
|||
|
|
|
Decent firewalls allow you to filter access on the loopback interfaces too. So, it's possible to set up a firewall rule that drops icmp ping packets going to localhost (127.0.0.1). Also, as everyone else has already mentioned, even the existence of the localhost or 127.0.0.1 address and the loopback interface isn't guaranteed. |
|||
|
|
|
The answer is: 127.0.0.1, often referred to as the "loopback", is required. Although your computer might let you do silly things, like disable it, or configure that range on a physical interface, these are all invalid. "localhost" is just a hostname, which by convention, should be 127.0.0.1 As a system administrator or hostmaster, you should avoid configurations that allow localhost to point to other addresses. You should not edit your hosts file to change the address of "localhost". You should configure your domains to have a localhost. and localhost.domain.com entry that points to 127.0.0.1. You should not let your proxy servers respond to "localhost" or any FQDN that starts with localhost. |
|||
|
|
|
Ok. The reason why it resolves it is record in %WINDOWS_DIR%\System32\drivers\etc\hosts file like this: 127.0.0.1 localhost |
|||
|
|