7 # Only include packets that contain data
8 NOTSYNFIN
=" and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)"
9 DUMP
="tcp port ${PORT}"
12 if [ "${IFACE}" != "any" ]; then
13 if [ -z "${IP}" ]; then
14 IP
="`ip addr show dev ${IFACE} | grep ' inet ' | tr -s ' ' | cut -f3 -d' ' | cut -f1 -d'/'`"
16 IPCLAUSE
=" and ((src host ${IP} and src port ${PORT}) or (dst host ${IP} and dst port ${PORT}))"
19 DUMPFILE
="dumps/`date '+%FT%T'`.dump"
22 sudo tcpdump
-i $IFACE -s0 -l -n -q -A "${DUMP}${NOTSYNFIN}${IPCLAUSE}" >"${DUMPFILE}" 2>&1 &
27 sudo
kill "${DUMPPID}"
29 if [ "`stat --format='%s' \"${DUMPFILE}\"`" -le 230 ] ; then