display all IPs which matched a pf rule


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. tcpdump -n -e -ttt -r /var/log/pflog |grep match | awk '{print $10}' | grep -v '\:\:' | cut -f '1 2 3 4' -d . | sort -u

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.