About 613,000 results
Open links in new tab
  1. What is the difference between 127.0.0.1 and localhost

    Sep 12, 2011 · 127.0.0.1 localhost What, if any, are the actual differences between using 127.0.0.1 and localhost as the server name, especially when hitting processes running locally that are listening for …

  2. networking - Why is localhost IP 127.0.0.1? - Super User

    99 127 is the last network number in a class A network with a subnet mask of 255.0.0.0. 127.0.0.1 is the first assignable address in the subnet. 127.0.0.0 cannot be used because that would be the wire …

  3. windows 7 - How does localhost 127.0.0.1 work? - Super User

    Localhost or 127.0.0.1 is simply a built in 'name' for your local computer. That is, 127.0.0.1 is called a "loopback", because it is merely a pointer that points back to your machine.

  4. network programming - How are 127.0.0.1, 0.0.0.0 and localhost ...

    Aug 8, 2016 · Yes, on your local system localhost does translate into 127.0.0.1, which will always be the IP address of the machine that you are currently using. For example, on your computer accessing …

  5. What is IPv6 for localhost and 0.0.0.0? - Stack Overflow

    Oct 22, 2016 · As we all know the IPv4 address for localhost is 127.0.0.1 (loopback address). What is the IPv6 address for localhost and for 0.0.0.0 as I need to block some ad hosts.

  6. Understanding the difference between localhost:8080 and 127.0.0.1

    Nov 26, 2019 · In normal configurations, localhost will point to either an address in the 127.x.x.x range (usually 127.0.0.1), or ::1 or similar if using IPv6. Some application implementations actually treat …

  7. hosts - localhost doesn't point to 127.0.0.1 - Stack Overflow

    Sep 28, 2016 · Anyway, thx your answer. My /etc/hosts used to has the record 127.0.0.1<feff> localhost, when I remove <feff> from it, the localhost point to 127.0.0.1 again.

  8. Why is my localhost not 127.0.0.1 but ::1, and what notation is that?

    Not only is that IPv6, but there is nothing special or hard-coded about localhost; it is specified in the HOSTS file. It is 127.0.0.1 by default, but you can change it to whatever you want, or remove it …

  9. What's a loopback-address? I.e. 127.0.0.1 - Super User

    Jun 6, 2015 · What is a loop-back address? 127.0.0.1 is a loop-back address, but what does this even mean? Please be very descriptive and give an example, as I'm having a hard-time understanding this.

  10. How can I change "127.0.0.1:8000 / localhost:8000" to my desired url ...

    Jul 14, 2019 · The default is to listen on localhost (127.0.0.1), which means it can't be accessed from outside the machine. Using --host=0.0.0.0 would listen on all addresses for the local machine.