Commit 91e495fc authored by Isaac (.ike) Levy's avatar Isaac (.ike) Levy Committed by Franco Fichtner

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: 's avatarIsaac (.ike) Levy <ike@blackskyresearch.net>
(cherry picked from commit b79a6d14)
parent f0e11c9f
......@@ -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++];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment