summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNOYB <Al_Stu@Frontier.com>2016-02-27 00:02:07 -0800
committerNOYB <Al_Stu@Frontier.com>2016-02-27 00:02:07 -0800
commite4bda595c73eee3e998d64d8b38bdcb036c93db9 (patch)
treecf5d1a4734d146005397ee393c2923f51e688e93 /src
parenta069d03fe07e3ec6cfe6fabb235be53e99fecadd (diff)
downloadpfsense-e4bda595c73eee3e998d64d8b38bdcb036c93db9.zip
pfsense-e4bda595c73eee3e998d64d8b38bdcb036c93db9.tar.gz
ICMPv6 Firewall Log Display - Fixes 5933
ICMPv6 logging was not being displayed in firewall log.
Diffstat (limited to 'src')
-rw-r--r--src/etc/inc/filter_log.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc/inc/filter_log.inc b/src/etc/inc/filter_log.inc
index dfc5a75..ef24f4b 100644
--- a/src/etc/inc/filter_log.inc
+++ b/src/etc/inc/filter_log.inc
@@ -395,7 +395,7 @@ function parse_firewall_log_line($line) {
$flent['urg'] = $rule_data[$field++];
$flent['options'] = explode(";", $rule_data[$field++]);
}
- } else if ($flent['protoid'] == '1') { // ICMP
+ } else if ($flent['protoid'] == '1' || $flent['protoid'] == '58') { // ICMP (IPv4 & IPv6)
$flent['src'] = $flent['srcip'];
$flent['dst'] = $flent['dstip'];
OpenPOWER on IntegriCloud