From 9ccdfad32835e0d8b30e6cd6c457323692bc6ef2 Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 11 Aug 2023 11:55:29 +0200 Subject: [PATCH] Disable connection self-check as it uses the old process detection --- firewall/master.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/firewall/master.go b/firewall/master.go index c84c12d0..4f729299 100644 --- a/firewall/master.go +++ b/firewall/master.go @@ -31,7 +31,9 @@ type deciderFn func(context.Context, *network.Connection, *profile.LayeredProfil var defaultDeciders = []deciderFn{ checkPortmasterConnection, - checkSelfCommunication, + // TODO: This is currently very slow. + // Find a way to improve performance using the eBPF data. + // checkSelfCommunication, checkIfBroadcastReply, checkConnectionType, checkConnectionScope,