+interface sniffing script

This commit is contained in:
Nico Schottelius 2019-07-28 12:05:23 +02:00
parent 871b187c2a
commit 5d62f26cb9
2 changed files with 17 additions and 0 deletions

17
bin/sniff-intf.sh Executable file
View File

@ -0,0 +1,17 @@
#!/bin/sh
if [ $# -ne 2 ]; then
echo "$0 intf name"
exit 1
fi
set -x
cd ~/master-thesis/pcap
intf=$1
name=$2
now=$(date +%F-%H%M)
filename=${name}-${now}-${intf}.pcap
sudo tcpdump -ni ${intf} -w "${filename}"