From efded9edab1305a5294f4981da97b0013ced9dd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustavo=20I=C3=B1iguez=20Goia?= Date: Wed, 26 Jul 2023 11:40:17 +0200 Subject: [PATCH] added icmp destination-unreachable to system-fw.json Allow destination-unreachable ICMP types by default, not to display ICMP pop-ups under certain circumstances. More info: https://github.com/evilsocket/opensnitch/discussions/946#discussioncomment-6035934 --- daemon/system-fw.json | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/daemon/system-fw.json b/daemon/system-fw.json index c1bfe5f5..1c1368b4 100644 --- a/daemon/system-fw.json +++ b/daemon/system-fw.json @@ -162,11 +162,7 @@ "Values": [ { "Key": "type", - "Value": "echo-request" - }, - { - "Key": "type", - "Value": "echo-reply" + "Value": "echo-request,echo-reply,destination-unreachable" } ] } @@ -187,11 +183,7 @@ "Values": [ { "Key": "type", - "Value": "echo-request" - }, - { - "Key": "type", - "Value": "echo-reply" + "Value": "echo-request,echo-reply,destination-unreachable" } ] }