From b79a6d14320d8b34ff50b67800e55d21764282bd Mon Sep 17 00:00:00 2001 From: "Isaac (.ike) Levy" Date: Sun, 31 Jan 2016 01:06:14 -0500 Subject: [PATCH] Firewall log not dispalaying intentionally logged IGMP packets The log filter were dropped because the packets did not get source and destination set. Signed-off-by: Isaac (.ike) Levy --- src/etc/inc/filter_log.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/etc/inc/filter_log.inc b/src/etc/inc/filter_log.inc index 6caf5e15e..90acc7836 100644 --- a/src/etc/inc/filter_log.inc +++ b/src/etc/inc/filter_log.inc @@ -254,6 +254,9 @@ function parse_filter_line($line) } break; } + } elseif ($flent['protoid'] == '2') { // IGMP + $flent['src'] = $flent['srcip']; + $flent['dst'] = $flent['dstip']; } elseif ($flent['protoid'] == '112') { // CARP $flent['type'] = $rule_data[$field++]; $flent['ttl'] = $rule_data[$field++];