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.
21 lines
433 B
21 lines
433 B
#!/usr/bin/env bash
|
|
|
|
PATH=/bin:/usr/local/sbin:/usr/local/bin:/usr/bin
|
|
|
|
if ! [ -n "$1" ]; then
|
|
echo 'Missing port parameter'
|
|
exit
|
|
fi
|
|
|
|
port=$1
|
|
DIRECTORY=`dirname $(readlink -e "$0")`
|
|
|
|
tdir="mkdir -p /tmp/djing_flow/${port}"
|
|
if [ -d "${tdir}" ]; then
|
|
echo "Warning: directory '${tdir}' exists"
|
|
else
|
|
mkdir -p "${tdir}"
|
|
fi
|
|
|
|
|
|
flow-capture -R ${DIRECTORY}/netflow_handler.sh -p /run/flow.pid -w ${tdir} -n1 -N0 0/0/${port}
|