From e87f056ebf3365114815c3c31af70323aa64ed9c Mon Sep 17 00:00:00 2001 From: NOYB Date: Sat, 27 Feb 2016 13:38:18 -0800 Subject: ICMPv6 Firewall Log Display - Fixes 5933 - RELENG_2_2 ICMPv6 logging was not being displayed in firewall log. --- etc/inc/filter_log.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/inc/filter_log.inc b/etc/inc/filter_log.inc index 6316bff..798ddcb 100644 --- a/etc/inc/filter_log.inc +++ b/etc/inc/filter_log.inc @@ -190,7 +190,7 @@ function parse_filter_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']; -- cgit v1.1