blob: c429ca61b2cbb14ccc43271308e72577d970c418 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Config file for /etc/init.d/snort
# This tell snort which interface to listen on (any for every interface)
IFACE="eth1"
# You do NOT want to change this
PIDPATH="/var/run/snort"
PIDFILE="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"
# This pulls in the options above
SNORT_OPTS="-D -u snort -i $IFACE -l $LOGDIR -c $CONF"
|