You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

Purpose:  This page will explain how to add a new node vendor in the event the default settings are not handling the syslog traps properly. 

For this discussion well use the term 'newVendor' to be the variable the represents the new vendor we want opEvents to handle.

Determine what facility level these syslog traps should be stampped with.  The syslog server will key on this facility level in order to route the syslog trap to the proper file.  If the device syslog is very similar to Cisco then you may want to simply use the local7 facility and the syslog traps will be sent to /usr/local/nmis8/logs/cisco.log.  Configure the nodes in question to send syslog to NMIS at the proper facility level.

For example, you may choose local6 for the newVendor switch.

The syntax is vendor dependant. 

Ensure the syslog server is provisioned to received traps (udp & tcp).

This configuration can be done on the /etc/syslog.conf file.  If the /etc/rsyslog.conf file contains:

$IncludeConfig /etc/rsyslog.d/*.conf

 Then it can be made on any file in rsyslog.d/ with the .conf extention.

# enable network sources
module(load="imudp")
input(type="imudp" port="514")

module(load="imtcp" MaxSessions="1000" MaxListeners="50")
input(type="imtcp" port="514"

# and handle inbound/slave NMIS syslogs
local7.*                /usr/local/nmis8/logs/cisco.log
local1.*                /usr/local/nmis8/logs/slave_event.log

 

Typically facilities local0 through local7 are used for routing syslog from external nodes.  For example local6 could be used for newVendor:

# and handle inbound/slave NMIS syslogs
local7.*                /usr/local/nmis8/logs/cisco.log
local6.*                /usr/local/nmis8/logs/newVendor.log
local1.*                /usr/local/nmis8/logs/slave_event.log

 

After modifying this file restart the syslog daemon.

[root@opmantek rsyslog.d]# /etc/init.d/rsyslog restart
Shutting down system logger:                               [  OK  ]
Starting system logger:                                    [  OK  ]

Now when syslog traps are received with facility level local6 we will see them in the /user/local/nmis8/logs/newVendor.log file.  If this file does not exist it will be created automatically.

For the sake of this discussion let's assume the new vendor can be parsed with the existing cisco_alternate rules found in /usr/local/omk/conf/EventParserRules.nmis.  We need to tell opEvents to use these parser rules on /usr/local/nmis8/logs/newVendor.log.  This is done by modifying /usr/local/omk/conf/opCommon.nmis in the following manner.

 

Provision syslog trap routing based on facility (restart syslogd)

modify EventParserRules.nmis to interpret events.

Tell opEvents to interpret that file. (restart opeventsd)

Identify GUI interesting events (EventActions.nmis)

  • No labels