blob: d7ef8bfc49f3a7d1d61051d3bb7b9e417eb38bb2 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Config file for /etc/init.d/sfcapd
# Port we listen on
# defaults to 6343
#PORT=6343
# Hostname/address we bind on
# default is any available
BINDHOST=127.0.0.1
# IPv4 only
#IPV4=no
# IPv6 only
#IPV6=no
# Join a specific Multicast group
#MULTICASTGROUP=
# Become a packet repeater
#REPEAT=desthost/port
# Ident string, specify the name of the router
#IDENT=
# Base Directory for output files
BASEDIR="/var/log/nfcapd"
# Source is one or more sources: Ident,IP,base_directory
# If you specificy SOURCE, do not specifiy IDENT or BASEDIR
#SOURCE="Foo,192.168.1.1,/var/log/nfcapd/foo Bar,192.168.1.2,/var/log/nfcapd/bar"
# Sample Rate
# defaults to source
#SAMPLERATE=
# additional directory sub hierarchy (default none)
#SUBDIR="%Y/%m/%d"
# Extensions to be stored in the netflow data
#EXTENSIONS="all"
# How often to rotate the files (in seconds)
#INTERVAL=300
# Do we align rotation with next even interval
#ALIGN=no
# Run a command at the end of every interval
#ROTATECMD=""
# Auto expire old files (yes/no)
#AUTOEXPIRE=no
# User / Group
# Defaults to nobody
#UID=nobody
#GID=nobody
# Buffer length in bytes (to reduce lost packets)
BUFFLEN=1024000
# Compress the flows with LZO (yes/no)
COMPRESS=yes
|