mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-14 21:56:41 +01:00
1343d1b305
Signed-off-by: David Spencer <baildon.research@googlemail.com>
57 lines
1.1 KiB
Bash
57 lines
1.1 KiB
Bash
#!/bin/sh
|
|
# Start/stop/restart snort
|
|
|
|
# This tell snort which interface to listen on ("any" == every interface)
|
|
IFACE=${IFACE:-any}
|
|
|
|
# Make sure this matches your IFACE
|
|
PIDFILE=/var/run/snort_$IFACE.pid
|
|
|
|
# You probably don't want to change this, but in case you do
|
|
LOGDIR="/var/log/snort"
|
|
|
|
# Probably not this either
|
|
CONF=/etc/snort/snort.conf
|
|
|
|
# Start snort:
|
|
snort_start() {
|
|
CMDLINE="/usr/bin/snort -d -D -i $IFACE"
|
|
echo "Starting Snort daemon: $CMDLINE"
|
|
$CMDLINE --pid-path /var/run --create-pidfile -l $LOGDIR -c $CONF
|
|
echo
|
|
}
|
|
|
|
# Stop snort:
|
|
snort_stop() {
|
|
if [ -f "$PIDFILE" ]; then
|
|
echo -n "Stopping Snort daemon (interface $IFACE)..."
|
|
kill $(cat $PIDFILE)
|
|
echo
|
|
sleep 1
|
|
rm -f $PIDFILE
|
|
else
|
|
echo "Pidfile $PIDFILE not found!"
|
|
echo "Either Snort is not running or you should specify IFACE=xxxx"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
# Restart snort:
|
|
snort_restart() {
|
|
snort_stop && sleep 1 && snort_start
|
|
}
|
|
|
|
case "$1" in
|
|
'start')
|
|
snort_start
|
|
;;
|
|
'stop')
|
|
snort_stop
|
|
;;
|
|
'restart')
|
|
snort_restart
|
|
;;
|
|
*)
|
|
echo "usage $0 start|stop|restart"
|
|
esac
|
|
|