From patchwork Sat Oct 4 13:44:05 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9153 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature ECDSA (secp384r1 raw public key) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R13" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4cf6Fp1K9Jz3x7N for ; Sat, 04 Oct 2025 13:44:14 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [IPv6:2001:678:b28::201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4cf6Fn1m3Nz3Np for ; Sat, 04 Oct 2025 13:44:13 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4cf6Fn10hyz2yHY for ; Sat, 04 Oct 2025 13:44:13 +0000 (UTC) X-Original-To: development@lists.ipfire.org Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature ECDSA (secp384r1) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R13" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4cf6Fk3grTz2xQc for ; Sat, 04 Oct 2025 13:44:10 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4cf6Fj4dkPz2Hc; Sat, 04 Oct 2025 13:44:09 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1759585449; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=nity/AhXm+RfenEg2y68SB1Rs8zn5MTzI28Us/bCfF4=; b=cUKwUQsBLWVEOZeNYCbCKCoaP32YateQLWmwR7ml+36jW6I3oe8w+0aQBDPgNDjnY9vCi7 e6jVnuqPf6vqy6CQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1759585449; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=nity/AhXm+RfenEg2y68SB1Rs8zn5MTzI28Us/bCfF4=; b=e//P3VTeEE5Yl4cDINe4Nau5U0e5HeTFEwCDg3vRT5VjOJfv5SuWrVIPgtewfl0Eh2Jskc whMOOuHn9+Q0pQNwS6bQqNJQChiGnTGe6JEER3N4mQFZyYkXeOAmOUCD8LG/ZZQR6atZRX Hjrh6eAETZg3nlbrkplg2kpOBNybUrwV935kZSBiA8D5iQicEbv2e4dxjHVA76nW6dPiI7 AU20TRBUG3vozQvy52sPoiDNBBLA051zAfqABCKITR3faH2V5JRyuqo2cmGJZcAR8pHBsB sXmN1VYB0M0c0t7GckhKyG/gZydsbg7MPYSTDliM7HyiGE1cjz2tsloOf/2m3g== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 1/2] suricata: Support Zabbix requirements Date: Sat, 4 Oct 2025 15:44:05 +0200 Message-ID: <20251004134406.577444-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - The Zabbix addon will use the unix socket and also the suricatasc tool. - Update configure to enable unix-socket - Update rootfile to uncomment suricatasc Signed-off-by: Adolf Belka --- config/rootfiles/common/suricata | 2 +- lfs/suricata | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/config/rootfiles/common/suricata b/config/rootfiles/common/suricata index 2bfc3babd..518920abd 100644 --- a/config/rootfiles/common/suricata +++ b/config/rootfiles/common/suricata @@ -3,7 +3,7 @@ etc/suricata/suricata.yaml usr/bin/suricata usr/bin/suricata-watcher #usr/bin/suricatactl -#usr/bin/suricatasc +usr/bin/suricatasc usr/sbin/convert-ids-backend-files #usr/share/doc/suricata #usr/share/doc/suricata/AUTHORS diff --git a/lfs/suricata b/lfs/suricata index e84c604c6..95403be78 100644 --- a/lfs/suricata +++ b/lfs/suricata @@ -83,7 +83,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) --with-libjansson-libraries=/usr/lib \ --with-libjansson-includes=/usr/include \ --disable-suricata-update \ - --enable-rust + --enable-rust \ + --enable-unix-socket cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install