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,