Jellyfin Forum
SOLVED: Multiple network messages in syslog - 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: SOLVED: Multiple network messages in syslog (/t-solved-multiple-network-messages-in-syslog)



Multiple network messages in syslog - paul beckett - 2023-06-19

Hi, how do I stop my raspberry pi syslog filling up with the following :-

Jun 19 10:46:09 raspberrypi jellyfin[799]: [10:46:09] [INF] Defined LAN exclusions : []
Jun 19 10:46:09 raspberrypi jellyfin[799]: [10:46:09] [INF] Using LAN addresses: [10.0.0.0/8,172.16.0.0/12,192.168.0.0/16]
Jun 19 10:47:09 raspberrypi jellyfin[799]: [10:47:09] [INF] Defined LAN addresses : [10.0.0.0/8,172.16.0.0/12,192.168.0.0/16]
Jun 19 10:47:09 raspberrypi jellyfin[799]: [10:47:09] [INF] Defined LAN exclusions : []
Jun 19 10:47:09 raspberrypi jellyfin[799]: [10:47:09] [INF] Using LAN addresses: [10.0.0.0/8,172.16.0.0/12,192.168.0.0/16]
Jun 19 10:48:09 raspberrypi jellyfin[799]: [10:48:09] [INF] Defined LAN addresses : [10.0.0.0/8,172.16.0.0/12,192.168.0.0/16]
Jun 19 10:48:09 raspberrypi jellyfin[799]: [10:48:09] [INF] Defined LAN exclusions : []
Jun 19 10:48:09 raspberrypi jellyfin[799]: [10:48:09] [INF] Using LAN addresses: [10.0.0.0/8,172.16.0.0/12,192.168.0.0/16]
Jun 19 10:48:43 raspberrypi systemd[1]: Started Session 5 of user pi.
Jun 19 10:49:09 raspberrypi jellyfin[799]: [10:49:09] [INF] Defined LAN addresses : [10.0.0.0/8,172.16.0.0/12,192.168.0.0/16]
Jun 19 10:49:09 raspberrypi jellyfin[799]: [10:49:09] [INF] Defined LAN exclusions : []
Jun 19 10:49:09 raspberrypi jellyfin[799]: [10:49:09] [INF] Using LAN addresses: [10.0.0.0/8,172.16.0.0/12,192.168.0.0/16]


RE: Multiple network messages in syslog - Venson - 2023-06-19

(2023-06-19, 09:55 AM)paul beckett Wrote: Hi, how do I stop my raspberry pi syslog filling up with the following :-

Jun 19 10:46:09 raspberrypi jellyfin[799]: [10:46:09] [INF] Defined LAN exclusions : []
Jun 19 10:46:09 raspberrypi jellyfin[799]: [10:46:09] [INF] Using LAN addresses: [10.0.0.0/8,172.16.0.0/12,192.168.0.0/16]
Jun 19 10:47:09 raspberrypi jellyfin[799]: [10:47:09] [INF] Defined LAN addresses : [10.0.0.0/8,172.16.0.0/12,192.168.0.0/16]
Jun 19 10:47:09 raspberrypi jellyfin[799]: [10:47:09] [INF] Defined LAN exclusions : []
Jun 19 10:47:09 raspberrypi jellyfin[799]: [10:47:09] [INF] Using LAN addresses: [10.0.0.0/8,172.16.0.0/12,192.168.0.0/16]
Jun 19 10:48:09 raspberrypi jellyfin[799]: [10:48:09] [INF] Defined LAN addresses : [10.0.0.0/8,172.16.0.0/12,192.168.0.0/16]
Jun 19 10:48:09 raspberrypi jellyfin[799]: [10:48:09] [INF] Defined LAN exclusions : []
Jun 19 10:48:09 raspberrypi jellyfin[799]: [10:48:09] [INF] Using LAN addresses: [10.0.0.0/8,172.16.0.0/12,192.168.0.0/16]
Jun 19 10:48:43 raspberrypi systemd[1]: Started Session 5 of user pi.
Jun 19 10:49:09 raspberrypi jellyfin[799]: [10:49:09] [INF] Defined LAN addresses : [10.0.0.0/8,172.16.0.0/12,192.168.0.0/16]
Jun 19 10:49:09 raspberrypi jellyfin[799]: [10:49:09] [INF] Defined LAN exclusions : []
Jun 19 10:49:09 raspberrypi jellyfin[799]: [10:49:09] [INF] Using LAN addresses: [10.0.0.0/8,172.16.0.0/12,192.168.0.0/16]

if i remember it logs that for every detected change in network status so maybe look for why the status of your network changes so much.


RE: Multiple network messages in syslog - paul beckett - 2023-06-19

It's set up as static ip4 on 1gig wired Ethernet, so I can't see why net status is changing every minute. None of the other apps on this server, e.g plex, are displaying errors or inf messages in syslog, just jellyfin.


RE: Multiple network messages in syslog - skribe - 2023-06-19

That output is just jellyfin's stdout. I don't think there is anything jellyfin can do to add or remove them from a specific log location. That's likely just a system configuration you're using. Those are usually in the jellyfin server log.

If I'm reading you correctly, and your main concern is getting them out of the syslog, you'll need to investigate to discover what configuration is putting them there in the first place.


RE: Multiple network messages in syslog - Shadowghost - 2023-06-19

These log lines are caused by the network manager of Jellyfin reloading the network configuration because something changed on the OS level.

This is most commonly caused by Jellyfin binding to 0.0.0.0 (all IPs on all interfaces, the default configuration) and Docker containers restarting and therefore perpetually removing and creating new interfaces, each time triggering the configuration reload.


RE: Multiple network messages in syslog - paul beckett - 2023-06-19

Fixed it. Although WiFi not configured in dhcpcd.conf, ifconfig showed both eth0 and wlan0 on same ip! Disabled WiFi in config.txt, and now all good. Strange behaviour.