From: Robin Roevens Date: Wed, 25 Mar 2026 19:26:32 +0000 (+0100) Subject: zabbix_agentd: add LLDP and DBUS services monitoring X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=dcccd2d80fd951b7b96f5232a5f3bda5bb7a0664;p=ipfire-2.x.git zabbix_agentd: add LLDP and DBUS services monitoring - Added built-in services LLDP and DBus to services discovery script. Signed-off-by: Robin Roevens Signed-off-by: Michael Tremer --- diff --git a/config/zabbix_agentd/ipfire_services.pl b/config/zabbix_agentd/ipfire_services.pl index d3f9855ba..a2949f729 100755 --- a/config/zabbix_agentd/ipfire_services.pl +++ b/config/zabbix_agentd/ipfire_services.pl @@ -5,9 +5,9 @@ # by Zabbix server # # Author: robin.roevens (at) disroot.org -# Version: 3.0 +# Version: 3.1 # -# Copyright (C) 2007-2024 IPFire Team +# Copyright (C) 2007-2026 IPFire Team # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -101,6 +101,17 @@ my %services = ( 'OpenVPN Roadwarrior Server' => { "process" => "openvpn", "pidfile" => "/var/run/openvpn-rw.pid", + }, + + # LLDPD + 'Link Layer Discovery Protocol' => { + "process" => "lldpd", + }, + + # DBus + 'D-Bus Daemon' => { + "process" => "dbus-daemon", + "pidfile" => "/var/run/dbus/pid", } );