You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
246 B
19 lines
246 B
3 years ago
|
#!/bin/sh
|
||
|
|
||
3 years ago
|
if [ $# -ne 2 ]; then
|
||
|
echo "$0 host name"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
3 years ago
|
set -x
|
||
3 years ago
|
cd ~/master-thesis/pcap
|
||
3 years ago
|
|
||
3 years ago
|
host=$1
|
||
|
name=$2
|
||
|
|
||
|
now=$(date +%F-%H%M)
|
||
3 years ago
|
filename=${name}-${now}-${host}.pcap
|
||
3 years ago
|
intf=${host}-eth0
|
||
|
|
||
|
mx "$host" tcpdump -ni ${intf} -w "${filename}"
|