Allow ICMPv6 Parameter Problem through peer ACL

This commit is contained in:
Viktor Liu
2026-05-04 12:28:53 +02:00
parent 63bb85cdf2
commit 6dbe3d82d1

View File

@@ -1374,7 +1374,8 @@ func (m *Manager) isSpecialICMP(d *decoder) bool {
icmpType := d.icmp6.TypeCode.Type()
return icmpType == layers.ICMPv6TypeDestinationUnreachable ||
icmpType == layers.ICMPv6TypePacketTooBig ||
icmpType == layers.ICMPv6TypeTimeExceeded
icmpType == layers.ICMPv6TypeTimeExceeded ||
icmpType == layers.ICMPv6TypeParameterProblem
}
return false
}