![]() |
SOLVED: Can't see other clients in the "cast to" devices list - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +--- Thread: SOLVED: Can't see other clients in the "cast to" devices list (/t-solved-can-t-see-other-clients-in-the-cast-to-devices-list) |
Can't see other clients in the "cast to" devices list - auxym - 2025-03-22 I'm not sure what changed recenetly, this used to work 1-2 weeks ago. I have not upgraded my JF server, but the clients (Jellyfin Media Player) might have been, I'm not sure (rolling release distros, I update everything frequently).
Searching led me to this thread: https://forum.jellyfin.org/t-cast-button-find-no-device?highlight=cast but it concludes that the DLNA plugin is it culprit. I do not have the DLNA plugin installed on the server. I can try searching logs, but I'm not sure what to look for. Also server logs or JMP logs? RE: Can't see other clients in the "cast to" devices list - TheDreadPirate - 2025-03-22 DLNA is not related to that function. Can you describe your network setup? Are you using a reverse proxy for all the clients? You can also try clearing the JMP cache on both clients. ~/.cache/Jellyfin Media Player ~/.local/share/jellyfinmediaplayer RE: Can't see other clients in the "cast to" devices list - auxym - 2025-03-23 Nothing special for the clients network-wise. Two machines on a home router wifi. No proxy setup. The server is running in a docker container and is behind a reverse proxy (nginx), which is running on the same physical machine in another container. The host is on the same LAN as the clients (wire to the router). I tried removing the folders you mentioned on both clients and restarting JMP, no luck, same result. RE: Can't see other clients in the "cast to" devices list - TheDreadPirate - 2025-03-23 What network mode is the jellyfin container running in? Host or bridge? RE: Can't see other clients in the "cast to" devices list - auxym - 2025-03-23 Sorry, I'm not super familiar with docker networking, but I assume bridge mode. It's not using host networking. The port mapping is as follows: Code: udp://0.0.0.0:7359:7359 nginx proxies the jellyfin.home domain (LAN use only, no public domain) to port 30013 which is the jellyfin web server port.I don't have any proxy setup for port 7359 though, should I? RE: Can't see other clients in the "cast to" devices list - TheDreadPirate - 2025-03-23 Code: tcp://0.0.0.0:30013:8096 You cannot do this kind of port redirection when using DLNA/casting. Jellyfin is advertising that it is on port 8096. It is not aware of the redirection. So clients are trying to connect to port 8096 when it should be connecting to 30013. You either need to remove the redirection, if possible, or configure Jellyfin to be directly on port 30013. RE: Can't see other clients in the "cast to" devices list - auxym - 2025-03-25 Good catch! But unfortunately no luck ![]() Code: udp://0.0.0.0:7359:7359 And updated the nginx proxy configuration as well. Same result still, I cannot see other clients in "Cast to" RE: Can't see other clients in the "cast to" devices list - TheDreadPirate - 2025-03-25 And how about when you switch to host networking? Also, is port 7359 open on the host firewall? RE: Can't see other clients in the "cast to" devices list - auxym - 2025-03-25 Changed it to host networking, deleted all .local/share and .cache JMP folders and restarted both clients: no luck, same issue. No firewall running on the host (truenas) machine. To my knowledge truenas does not include firewall functionality at all. Running nmap (-sT) from my laptop (one of the clients) also shows port 8096 as open on the host. Thanks for the help so far troubleshooting this btw ![]() RE: Can't see other clients in the "cast to" devices list - TheDreadPirate - 2025-03-25 Do you have anything in the Published URI field in Dashboard > Networking? |