The log keyword of an ACL doesn't seem to work, take this simple policy as an example:
entry permit_ICMP {
if {
protocol icmp;
}
then {
permit;
mirror-cpu;
log;
count icmp;
}
}
The counter increments fine, the traffic is permitted (even with a deny any in the end) but there's no log.
Looking forward for an answer for this.
Thanks in advance.