2011-12-23 Ramon Novoa <rnovoa@artica.es>
* conf/pandora_server.conf: Added Netflow server configuration tokens. * lib/PandoraFMS/Core.pm: Added the netflow server type. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5304 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
6491cd2057
commit
afdc15e750
|
@ -1,3 +1,10 @@
|
|||
2011-12-23 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* conf/pandora_server.conf: Added Netflow server configuration
|
||||
tokens.
|
||||
|
||||
* lib/PandoraFMS/Core.pm: Added the netflow server type.
|
||||
|
||||
2011-12-22 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* lib/PandoraFMS/Config.pm: Added netflow server configuration
|
||||
|
|
|
@ -332,3 +332,15 @@ snmp_threads 2
|
|||
# Block size for block producer/consumer servers, that is, the number of modules
|
||||
# per block (15 by default) (PANDORA FMS ENTERPRISE ONLY).
|
||||
block_size 15
|
||||
|
||||
# Enable (1) or disable (0) Pandora FMS Netflow Server (PANDORA FMS ENTERPRISE ONLY).
|
||||
netflowserver 1
|
||||
|
||||
# Path to the netflow daemon nfcapd.
|
||||
netflow_daemon /usr/local/bin/nfcapd
|
||||
|
||||
# Netflow file rotation interval in seconds.
|
||||
netflow_interval 300
|
||||
|
||||
# Base directory where netflow files will be stored.
|
||||
netflow_basedir /tmp
|
||||
|
|
|
@ -172,7 +172,7 @@ our @EXPORT = qw(
|
|||
|
||||
# Some global variables
|
||||
our @DayNames = qw(sunday monday tuesday wednesday thursday friday saturday);
|
||||
our @ServerTypes = qw (dataserver networkserver snmpconsole reconserver pluginserver predictionserver wmiserver exportserver inventoryserver webserver eventserver icmpserver snmpserver);
|
||||
our @ServerTypes = qw (dataserver networkserver snmpconsole reconserver pluginserver predictionserver wmiserver exportserver inventoryserver webserver eventserver icmpserver snmpserver netflowserver);
|
||||
our @AlertStatus = ('Execute the alert', 'Do not execute the alert', 'Do not execute the alert, but increment its internal counter', 'Cease the alert', 'Recover the alert', 'Reset internal counter');
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue