Commit 6c984d5d authored by Franco Fichtner's avatar Franco Fichtner

Merge pull request #729 from dotike/smallfix

Firewall log not dispalaying intentionally logged IGMP packets
parents 8034446f b79a6d14
......@@ -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