blob: 330dc591c10f5807ef501a8047b818f68438ca8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Default config for Suricata
# set to yes to start the server in the init.d script
RUN=no
# Configuration file to load
SURCONF=/etc/suricata/suricata.yaml
# Listen mode: pcap, nfqueue or af-packet
# depending on this value, only one of the two following options
# will be used (af-packet uses neither).
# Please note that IPS mode is only available when using nfqueue
LISTENMODE=nfqueue
# Interface to listen on (for pcap mode)
IFACE=eth0
# Queue number to listen on (for nfqueue mode)
NFQUEUE=0
# Load Google TCMALLOC if libtcmalloc-minimal4 is installed
# This _might_ give you very very small performance gain....
TCMALLOC="YES"
# Pid file
PIDFILE=/var/run/suricata.pid
|