firewall log accept and drop rate calculation

From cpwiki.net
Jump to: navigation, search
Check Point Profressional Services

baseline /count accepts & drops for the last minute from firewall 192.168.1.1

accept commmand

# fw log -n -c accept -h 192.168.1.1 -s `/bin/date --date="1 minutes ago" +%T` -e `/bin/date +%T` |wc -l
  9013

drop command

# fw log -n -c drop -h 192.168.1.1 -s `/bin/date --date="1 minutes ago" +%T` -e `/bin/date +%T` |wc -l
   761

script (one liner)

This command will give you the accept and drop rate for the last minute for the IP specified.

[Expert@cplogger]# IP="192.168.1.1"; for i in accept drop; do printf "$i "; fw log -n -c $i -h $IP -s `/bin/date --date="1 minutes ago" +%T` -e `/bin/date +%T` |wc -l; done
accept     699
drop     301