• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support Troubleshooting SOLVED: Local Connection Issue

     
    • 0 Vote(s) - 0 Average

    SOLVED: Local Connection Issue

    Cannot connect devices on LAN to host server
    sammyg2005
    Offline

    Junior Member

    Posts: 12
    Threads: 1
    Joined: 2024 Jul
    Reputation: 0
    Country:United States
    #1
    2024-07-23, 08:13 PM
    I have read numerous forums and articles trying to get this to work and have not suceeded. Like many, I can connect to the WebUI on the host machine with localhost and the IP 192.168.31.xxx. Any assistance is appreciated.

    Docker compose YAML
    Code:
    networks:
      mediastack:
        name: mediastack
        driver: bridge
        ipam:
          driver: default
          config:
          - subnet: ${DOCKER_SUBNET:?err}
            gateway: ${DOCKER_GATEWAY:?err}
    #  jellyfin:
    #    external: true
    #    driver: bridge
    #    ipam:
    #      driver: default
    services:
      gluetun:
        image: qmcgaw/gluetun
        container_name: gluetun
        restart: always
        cap_add:
          - NET_ADMIN
        devices:
          - /dev/net/tun:/dev/net/tun
        ports:
          - 8888:8888/tcp # HTTP proxy
          - 8388:8388/tcp # Shadowsocks
          - 8388:8388/udp # Shadowsocks
          - 8080:8080/tcp # gluetun
          - "${WEBUI_PORT_QBITTORRENT:?err}:${WEBUI_PORT_QBITTORRENT:?err}"  # WebUI Portal: qBittorrent
        volumes:
          - ${APPDATA:?err}/gluetun:/config
        environment:
          - PUID=${PUID:?err}
          - PGID=${PGID:?err}
          - TZ=${TIMEZONE:?err}
          - VPN_TYPE=${VPN_TYPE:?err}
          - VPN_SERVICE_PROVIDER=${VPN_SERVICE_PROVIDER:?err}
          - OPENVPN_USER=${VPN_USERNAME:?err}
          - OPENVPN_PASSWORD=${VPN_PASSWORD:?err}
          - VPN_PORT_FORWARDING_USERNAME=${VPN_USERNAME:?err}
          - VPN_PORT_FORWARDING_PASSWORD=${VPN_PASSWORD:?err}
          - VPN_PORT_FORWARDING=on
          - SERVER_COUNTRIES=${SERVER_COUNTRIES}
          #- SERVER_REGIONS=$(SERVER_REGIONS)
          #- SERVER_CITIES=$(SERVER_CITIES)
          #- SERVER_HOSTNAMES=$(SERVER_HOSTNAMES)
          - OPENVPN_CIPHERS=AES-256-GCM
        networks:
          - mediastack
     jellyfin:
        image: lscr.io/linuxserver/jellyfin:latest
        container_name: jellyfin
        network_mode: "host"
        restart: unless-stopped
    # Add Configurations for GPU Hardware Rendering Here:
        devices:
          - /dev/dri/renderD128:/dev/dri/renderD128
          - /dev/dri/card1:/dev/dri/card1
        volumes:
          - ${APPDATA:?err}/jellyfin:/config
          - ${MEDIADATA:?err}/:/data/media/
        ports:
          - 8096:8096
          - 7359:7359/udp      # Enable for DLNA - Only works on HOST Network Mode
          - 1900:1900/udp      # Enable for DLNA - Only works on HOST Network Mode
        environment:
          - PUID=${PUID:?err}
          - PGID=${PGID:?err}
          - UMASK=${UMASK:?err}
          - TZ=${TIMEZONE:?err}
          - JELLYFIN_PublishedServerUrl=${LOCAL_DOCKER_IP:?err}  # Enable for DLNA - Only works on HOST Network Mode
    #    networks:
    #      - jellyfin

    Host OS: Arch
    Subnet: 192.168.30.0/23
    Server IP: 192.168.31.xxx
    Jellyfin install method: Docker with compose stack
    Devices tried to connect to server: Firestick, Laptop running Mint, and iOS device with latest version
    App used: Official Jellyfin Mobile, AndroidTV Jellyfin app
    Things tried: 
    - host and bridge mode in docker compose
    - numerous restarts
    - open ports in host firewall
    - multiple network settings in Jellyfin


    Attached Files Thumbnail(s)
               
    Go to solution
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    Messages In This Thread
    Local Connection Issue - by sammyg2005 - 2024-07-23, 08:13 PM
    RE: Local Connection Issue - by TheDreadPirate - 2024-07-23, 08:35 PM
    RE: Local Connection Issue - by sammyg2005 - 2024-07-24, 01:04 AM
    RE: Local Connection Issue - by TheDreadPirate - 2024-07-24, 02:30 AM
    RE: Local Connection Issue - by sammyg2005 - 2024-07-24, 05:08 AM
    RE: Local Connection Issue - by TheDreadPirate - 2024-07-24, 02:19 PM
    RE: Local Connection Issue - by sammyg2005 - 2024-07-24, 03:46 PM
    RE: Local Connection Issue - by TheDreadPirate - 2024-07-24, 04:11 PM
    RE: Local Connection Issue - by sammyg2005 - 2024-07-24, 05:17 PM
    RE: Local Connection Issue - by TheDreadPirate - 2024-07-24, 06:33 PM
    RE: Local Connection Issue - by sammyg2005 - 2024-07-24, 06:54 PM
    RE: Local Connection Issue - by TheDreadPirate - 2024-07-24, 07:06 PM
    RE: Local Connection Issue - by sammyg2005 - 2024-07-24, 07:22 PM
    RE: Local Connection Issue - by TheDreadPirate - 2024-07-24, 07:40 PM
    RE: Local Connection Issue - by sammyg2005 - 2024-07-24, 08:12 PM
    RE: Local Connection Issue - by sammyg2005 - 2024-07-24, 09:16 PM
    RE: Local Connection Issue - by TheDreadPirate - 2024-07-24, 09:18 PM
    RE: Local Connection Issue - by sammyg2005 - 2024-07-24, 09:23 PM
    RE: Local Connection Issue - by TheDreadPirate - 2024-07-24, 09:31 PM
    RE: Local Connection Issue - by sammyg2005 - 2024-07-24, 09:35 PM
    RE: Local Connection Issue - by sammyg2005 - 2024-07-24, 11:08 PM
    RE: Local Connection Issue - by axute - 2024-11-14, 10:45 PM
    RE: Local Connection Issue - by TheDreadPirate - 2024-11-14, 11:17 PM
    RE: Local Connection Issue - by axute - 2024-11-15, 09:05 AM
    RE: Local Connection Issue - by TheDreadPirate - 2024-11-15, 02:42 PM

    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode