You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
It's not possible to listen on both v4 and v6 of localhost. Unlike :: which is a somewhat-magical setting that enables both families in Linux (and all addresses), for anything else (like localhost), there's no good solution.
You can set bind to 127.0.0.1 or to ::1, but you can't set it to both addresses, or to just localhost.
Describe the solution you'd like
When specifying a hostname like localhost, all relevant addresses are listend/bound. For example:
This issue has been automatically marked as stale because it has been open 90 days with no activity. Remove stale label or comment or this issue will be closed in 30 days
Is your feature request related to a problem? Please describe.
It's not possible to listen on both v4 and v6 of localhost. Unlike
::
which is a somewhat-magical setting that enables both families in Linux (and all addresses), for anything else (like localhost), there's no good solution.You can set
bind
to127.0.0.1
or to::1
, but you can't set it to both addresses, or to justlocalhost
.Describe the solution you'd like
localhost
, all relevant addresses are listend/bound. For example:Describe alternatives you've considered
An alternative might be multiple bind statements, but... that's suboptimal.
The text was updated successfully, but these errors were encountered: