Questions tagged [loopback-address]

Loopback address is a special IP number (127.0.0.1) that is designated for the software loopback interface of a machine.

Loopback address, based upon RFC 5735: Special Use IPv4 Addresses, is a special IP number (eg: 127.0.0.1) that is designated for the software loopback interface of a machine. The loopback interface has no hardware associated with it, and it is not physically connected to a network.

Within IPV6 loopback looks like 0:0:0:0:0:0:0:1, although in IPV6, the longest contiguous block of zeros may be replaced with :: thus resulting in the condensed loopback address of ::1, based upon RFC 4291: IP Version 6 Addressing Architecture.

Looback address is a special range of addresses in the range 127.0.0.0 to 127.255.255.255. The data sent by a host to a 127.x.x.x loopback address are not passed down to the data link layer for transmission. Instead, they “loop back” to the source device.

The purpose of the loopback range is testing of the TCP/IP protocol implementation on a host. Since the lower layers are short-circuited, sending to a loopback address allows the higher layers (IP and above) to be effectively tested without the chance of problems at the lower layers manifesting themselves. 127.0.0.1 is the address most commonly used for testing purposes.

Sources:

33 questions
-1
votes
1 answer

How to disable loopback interface in Linux (Fedora)?

So that requests to localhost are treated as if coming from remote host in LAN?
asker
  • 2,159
  • 3
  • 22
  • 27
-1
votes
1 answer

Is it possible to find and bind to a random unused IP address in the private block 127.0.0.0/8?

The alternative is to use a daemon to manage and hand out those IP addresses. Trying to get DHCP daemon software to serve out IP addresses in 127.0.0.0/8 is weird and doesn't seem to work well for me and the alternative is to write my own DHCP like…
-1
votes
1 answer

What's the point of being able to change your loopback/localhost 127.0.0.1 address to something else?

I think IPv6 even has a short-hand for localhost as ::1. Are the security implications of using a different loopback address, or someone finding out your loopback address? I guess people are upset about the New York Times snooping their loopback…
GlenPeterson
  • 4,866
  • 5
  • 41
  • 49
1 2
3