• 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 Networking & Access Logs warning spam : Only loopback "127.0.0.1" returned, using that as bind address.

     
    • 0 Vote(s) - 0 Average

    Logs warning spam : Only loopback "127.0.0.1" returned, using that as bind address.

    Duvel
    Offline

    Member

    Posts: 87
    Threads: 10
    Joined: 2023 Jul
    Reputation: 5
    Country:Belgium
    #1
    2025-12-18, 12:45 PM (This post was last modified: 2025-12-18, 12:55 PM by Duvel. Edited 4 times in total.)
    Hi

    Got this warning spamming my logs for ages. The few threads I've read about it are symptomatic of a network issue, but I have strictly zero issues with my config. 


    Code:
    [2025-12-18 13:29:52.168 +01:00] [WRN] "192.168.1.3": Only loopback "127.0.0.1" returned, using that as bind address.
    [2025-12-18 13:30:23.521 +01:00] [WRN] "192.168.1.3": Only loopback "127.0.0.1" returned, using that as bind address.
    [2025-12-18 13:30:54.753 +01:00] [WRN] "192.168.1.3": Only loopback "127.0.0.1" returned, using that as bind address.
    [2025-12-18 13:31:26.073 +01:00] [WRN] "192.168.1.3": Only loopback "127.0.0.1" returned, using that as bind address.
    [2025-12-18 13:31:57.282 +01:00] [WRN] "192.168.1.3": Only loopback "127.0.0.1" returned, using that as bind address.
    [2025-12-18 13:32:28.556 +01:00] [WRN] "192.168.1.3": Only loopback "127.0.0.1" returned, using that as bind address.
    [2025-12-18 13:32:59.910 +01:00] [WRN] "192.168.1.3": Only loopback "127.0.0.1" returned, using that as bind address.
    [2025-12-18 13:33:31.136 +01:00] [WRN] "192.168.1.3": Only loopback "127.0.0.1" returned, using that as bind address.
    [2025-12-18 13:34:02.446 +01:00] [WRN] "192.168.1.3": Only loopback "127.0.0.1" returned, using that as bind address.
    [2025-12-18 13:34:33.704 +01:00] [WRN] "192.168.1.3": Only loopback "127.0.0.1" returned, using that as bind address.
    [2025-12-18 13:35:05.016 +01:00] [WRN] "192.168.1.3": Only loopback "127.0.0.1" returned, using that as bind address.
    [2025-12-18 13:35:36.360 +01:00] [WRN] "192.168.1.3": Only loopback "127.0.0.1" returned, using that as bind address.
    [2025-12-18 13:36:07.619 +01:00] [WRN] "192.168.1.3": Only loopback "127.0.0.1" returned, using that as bind address.
    [2025-12-18 13:36:16.539 +01:00] [WRN] "192.168.1.50": Only loopback "127.0.0.1" returned, using that as bind address.
    [2025-12-18 13:36:17.295 +01:00] [WRN] "192.168.1.50": Only loopback "127.0.0.1" returned, using that as bind address.
    [2025-12-18 13:36:17.352 +01:00] [WRN] "192.168.1.50": Only loopback "127.0.0.1" returned, using that as bind address.
    [2025-12-18 13:36:17.418 +01:00] [WRN] "192.168.1.50": Only loopback "127.0.0.1" returned, using that as bind address.
    [2025-12-18 13:36:17.598 +01:00] [INF] WS "192.168.1.50" request
    [2025-12-18 13:36:23.890 +01:00] [WRN] "192.168.1.50": Only loopback "127.0.0.1" returned, using that as bind address.

    My network topology
    192.168.1.* = LAN
    192.168.2.* = DMZ
    192.168.2.4 = Webserver (where jelly runs in docker)
    192.168.2.10 = Frontdoor (caddy reverse proxy + auth and security stuff)

    All servers are Ubuntu and all services are docker.

    Logs of 192.168.1.3 is my monitoring server that retrieve Jellyfin /metrics (Prometheus)
    Logs of  192.168.1.50 is my computer accessing Jellyfin web
    Everything works.


    Jellyfin (docker) working fine and is reachable from all machines in the DMZ where it lies, from LAN, and from WAN.


    I'd like to get rid of this warning spam in my logs but all attempts failed so far. I've notably added LAN/DMZ/Docker networks to the LocalNetworkSubnets and that doesnt change anything.

    Note that there's nothing exotic specified in my docker-compose for Jellyfin network, it just uses default bridge driver.


    Network file
    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <NetworkConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <BaseUrl />
      <EnableHttps>false</EnableHttps>
      <RequireHttps>false</RequireHttps>
      <InternalHttpPort>8096</InternalHttpPort>
      <InternalHttpsPort>8920</InternalHttpsPort>
      <PublicHttpPort>8096</PublicHttpPort>
      <PublicHttpsPort>8920</PublicHttpsPort>
      <AutoDiscovery>true</AutoDiscovery>
      <EnableIPv4>true</EnableIPv4>
      <EnableIPv6>false</EnableIPv6>
      <EnableRemoteAccess>true</EnableRemoteAccess>
      <LocalNetworkSubnets>
        <string>0.0.0.0/8</string>
        <string>192.168.0.0/16</string>
        <string>172.0.0.0/8</string>
        <string>10.0.0.0/8</string>
      </LocalNetworkSubnets>
      <LocalNetworkAddresses>
        <string>192.168.2.4</string>
      </LocalNetworkAddresses>
      <KnownProxies>
        <string>192.168.2.10</string>
      </KnownProxies>
      <IgnoreVirtualInterfaces>false</IgnoreVirtualInterfaces>
      <VirtualInterfaceNames>
        <string>veth</string>
      </VirtualInterfaceNames>
      <EnablePublishedServerUriByRequest>false</EnablePublishedServerUriByRequest>
      <PublishedServerUriBySubnet>
        <string>internal=http://192.168.2.4:8096</string>
        <string>external=https://yyyyy.xxxxx.be</string>
      </PublishedServerUriBySubnet>
      <RemoteIPFilter />
      <IsRemoteIPFilterBlacklist>false</IsRemoteIPFilterBlacklist>
    </NetworkConfiguration>

    I have no error with my config.
    And according to me, this warning message is just triggered for nothing in my case, and is thus useless spam.
    « Next Oldest | Next Newest »

    Users browsing this thread:


    • 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