In computer networking, localhost is a hostname that means this computer.
It is used to access the network services that are running on the host via its loopback network interface. Using the loopback interface bypasses any local network interface hardware.
The local loopback mechanism is useful for testing software during development, independently of any networking configurations.
For example, if a computer has been configured to provide a website, directing a locally running web browser to http://localhost may display its home page.
On most computer systems, localhost resolves to the IP address 127.0.0.1, which is the most commonly used IPv4 loopback address, and to the IPv6 loopback address.
_________________________
_________________________
Comments
Post a Comment