Skip to main content
Skip table of contents

Cisco Devices (syslog)

For additional information, see Configuring Cisco Devices to Use a Syslog Server.

LogRhythm uses the standard newline character - '\n' - to parse TCP syslog messages. If you need to support the '\r\n', '\r', or '\0' delimiters, you must enable SyslogUseEnhancedTCPDelimiters in the Advanced Agent Properties.

Syslog Configuration

Syslog reserves facilities local0 through local7 for log messages received from remote servers and network devices. Routers, switches, firewalls, and load balancers each logging with a different facility can each have its own log files for easy troubleshooting. The following examples will show how to have a different log file for each class of device.

If you have a large data center, then you may also want to switch off all logging to /var/log/messages. In all the network device configuration examples below, we are logging to the remote Linux logging server 192.168.1.100.

Cisco Routers

By default Cisco routers send syslog messages to their logging server with a default facility of local7. We do not set the facility in this case, but we can tell the router to timestamp the messages and make the messages have the source IP address of the loopback interface.

service timestamps log datetime localtime
no logging console
no logging monitor
logging 192.168.1.100

Catalyst CAT Switches running CATOS

set logging server enable
set logging server 192.168.1.100
set logging level all 5
set logging server severity 6

Cisco Local Director

By default Cisco switches also send syslog messages to their logging server with a default facility of local7. We will not change this facility either, therefore making routers and switches log to the same file.

Local Directors use the "syslog output" command to set their logging facility and severity. The value provided must be in the format FF.SS (facility.severity) using the numbering scheme below:

FacilityFF ValueSeveritySS Value
local 016System unusable0
local 117Immediate action required1
local 218Critical condition2
local 319Error conditions3
local 420Warning conditions4
local 521Normal but significant conditions5
local 622Informational messages6
local 723Debugging messages7

Here we using facility LOCAL4 and logging debugging messages and above.
syslog output 20.7
no syslog console
syslog host 192.168.1.100

Cisco PIX Firewalls

PIX firewalls use the following numbering scheme to determine their logging facilities.

FacilityLogging Facility Command Value
local 016
local 117
local 218
local 319
local 420
local 521
local 622
local 723

This configuration example assumes that the logging server is connected on the side of the "inside" protected interface. We're sending log messages to facility LOCAL3 with a severity level of 5 (Notification) set by the "logging trap" command.

logging on
logging standby
logging timestamp
logging trap notifications
logging facility 19
logging host inside 192.168.1.100

Cisco CSS11000 (Arrowpoints)

The configuration for this is more straight forward. You specify the facility with an intuitive number using the "logging host" command and set the severity with the "logging subsystem" command. This example shows the CSS11000 logging facility LOCAL 6 and severity level 6 (Informational)

logging host 192.168.1.100 facility 6
set logging subsystem all info-6
logging commands enable

Sample Cisco syslog.conf File

CODE
#
# All LOCAL3 messages (debug and above) go to the firewall file ciscofw
#local3.debug /
var/log/cisco/ciscofw
## All LOCAL4 messages (debug and above) go to the Local Director file ciscold
#
local4.debug /var/log/cisco/ciscold## All LOCAL6 messages (debug and above) go to the CSS file ciscocss
#
local6.debug /var/log/cisco/ciscocss
#
# All LOCAL7 messages (debug and above) go to the ciscoacl
# This includes ACL logs which are logged at severity debug#
local7.debug /var/log/cisco/ciscoacl#
# LOCAL7 messages (notice and above) go to the ciscoinfo
# This excludes ACL logs which are logged at severity debug
#
local7.notice /var/log/cisco/ciscoinfo
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.