About 608,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 …

  2. 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.

  3. 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 …

  4. 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 …

  5. 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.

  6. windows - Can't access 127.0.0.1 - Stack Overflow

    Dec 31, 2015 · I mean that connection can't be established when using 127.0.0.1. For example, I run IIS and can access site using localhost, when I run azure emulator, I can access it using …

  7. How can I change "127.0.0.1:8000 / localhost:8000" to my desired …

    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 …

  8. Can't connect to Flask web service, connection refused

    May 31, 2015 · 127.0.0.1 is the localhost address and will only be reachable from the raspi. In order to get access from your laptop open up the terminal on your raspi and try instead the ip …

  9. Live server installed but not working in VS code - Stack Overflow

    Jun 7, 2020 · I found the perfect solution, when you open the live server in VSCode and you know the port (he opens an page in your browser). In the extension in (my case) chrome at Live …

  10. 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 …