mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-15 09:04:39 +00:00
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 <ike@blackskyresearch.net>
This commit is contained in:
parent
35a11180fc
commit
b79a6d1432
@ -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++];
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user