blob: 86b566abcffc9bb739e10de8fbc06612a761033c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#
# Parameters to be passed to snort
#
# options taken from Fedora
# http://cvs.fedoraproject.org/viewcvs/devel/snort/sysconfig.snort?rev=1.2&view=markup
# Where is the snort.conf file.
SNORT_CONF="/etc/snort/snort.conf"
# What user account should we run under.
USER="snort"
# What group account should we run under.
GROUP="snort"
# define the interface we listen on
INTERFACE="eth0"
# If you are using prelude, delete the '-A fast' option
SNORT_OPTIONS="-A fast -b -l /var/log/snort -D -p"
|