-
-
Notifications
You must be signed in to change notification settings - Fork 933
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
daemon doesn't listen on IPv6 #887
Comments
Could you try the following:
This should mount the updated Nginx Unit configuration file to the correct spot within NetBox Docker. Then stop the container and start it again. Like this, for example: docker compose stop
docker compose rm netbox
docker compose up netbox You should also be able to check that Nginx Unit is now listening on the IPv6 port by doing this in a separate terminal: $ docker compose exec -u 0 netbox /bin/bash
$> apt update && apt install -y net-tools
$> netstat -tulpn
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 127.0.0.11:44285 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN -
tcp6 0 0 :::8080 :::* LISTEN -
udp 0 0 127.0.0.11:60519 0.0.0.0:* - Note the |
Thank you so much for looking into it! The proposed change works just fine for me. After applying, stopping, removing & restarting netbox, the
(I prefer Also reachability from outside the container is given:
|
Thanks for testing. We'll include it in our next release as default configuration. #889 |
Current Behavior
Even if the Docker container has IPv6 enabled, the daemon isn't listening on it, requiring the use of IPv4:
Actual IPv6 obscured.
Expected Behavior
I would expect the daemon to listen on both IPv4 and IPv6.
Docker Compose Version
2.12.2
Docker Version
The git Revision
8b16b16
The git Status
Content of docker-compose.override.yml
The text was updated successfully, but these errors were encountered: