2

When i am trying to navigate to url such as http://0.0.0.0:3000/something, canary does not allow me to do it, it just offers me to search with text that i typed in omnibox. enter image description here

It happens only with address that started with 0. enter image description here

And there is no such problem in stable version. How can i fix it?

1 Answers1

1

This is because the 0.0.0.0/8 block is reserved and only valid as a source addresses; Thus, it makes little sense to navigate to it, since that would be using it as a destination. Source

If a particular piece of software is listening for incoming connections on 0.0.0.0, that generally means that it is listening on all available network interfaces. Simply substitute it for any IP address by which you can reach the target machine.

Darth Android
  • 38,658