Merge pull request #729 from dotike/smallfix

Firewall log not dispalaying intentionally logged IGMP packets
This commit is contained in:
Franco Fichtner 2016-01-31 18:46:44 +01:00
commit 6c984d5d52

View File

@ -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++];