![]() |
IPv6 not active? (Linux) - solved - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +---- Forum: Networking & Access (https://forum.jellyfin.org/f-networking-access) +---- Thread: IPv6 not active? (Linux) - solved (/t-ipv6-not-active-linux-solved) |
IPv6 not active? (Linux) - solved - chill - 2023-12-24 Hi, Running Jellyfin 10.8.13 on a Debain 12 VM, and in the Dashboard under Networking I have both "Enable IPv4" and "Enable IPv6" checked, however nothing is listening on ipv6. Looking at port 8096 as an example: Code: root@jellyfin:~# ss -tulpen 'sport = :8096' I was expecting something with either *:8096 or having [::]:8096 in addition.This is what I see in the logs Code: root@jellyfin:~# journalctl --unit jellyfin --boot | grep listening Any advice? Edit: answering my own question, I needed to restart everything when toggling the Network protocols in the Dashboard Code: root@jellyfin:~# sudo ss -tlen 'sport = :8096' N.B. the v6only:0 means this handled both v4 and v6 IIRC.Code: root@jellyfin:~# journalctl --unit jellyfin --boot | grep listening RE: IPv6 not active? (Linux) - TheDreadPirate - 2023-12-24 Does your NIC have an IPv6 address? Also try restarting jellyfin RE: IPv6 not active? (Linux) - solved - chill - 2023-12-24 Thanks, after a reboot now both v4 and v6 are working. (Perhaps the GUI should state this is needed?) |