guides:user:nccm:syslog
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
guides:user:nccm:syslog [2020/03/18 14:29] – yspeerte | guides:user:nccm:syslog [2024/07/03 12:31] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | {{indexmenu_n> | ||
+ | |||
+ | ===== NCCM Syslog ===== | ||
+ | |||
+ | |||
+ | In order to detect a config change NetYCE deploys a syslog server that listens to network events. Since each node, but certainly the network as a whole, can issue large amounts of syslog messages, these events need to be filtered. Only the events indicating a configuration change was made is of interest to the NCCM. | ||
+ | |||
+ | Syslog messages can originate directly from each device if it is configured with the NetYCE server(s) as target. It is common practice to have the device send syslog messages to multiple servers using the udp protocol. When NetYCE servers form this target the NCCM process will deduplicate these messages and retrieve the changed configuration only once. | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | In many existing networks the syslog servers are already part of the network monitoring solution and all nodes have these addresses configured as their syslog targets. To allow NetYCE to receive the syslog messages it needs to trigger the NCCM a forwarding rule needs to be activated on the existing syslog receivers to the NetYCE server(s). In most cases this forwarding can also incorporate a filter to reduce the number of syslog messages (eg by dropping ' | ||
+ | |||
+ | ==== Delays ==== | ||
+ | |||
+ | When a device signals its configuration has changed The NCCM will not immediately be triggered to retrieve its configuration. Assuming an operator using the CLI on the device made this change, we postpone scheduling the configuration retrieval by 10 minutes to allow the operator to finish his session. | ||
+ | |||
+ | After these 10 minutes the retrieval will be scheduled within the next 5 minutes to be fetched by the NCCM. However, if the NCCM is too busy handling all requests within that 5 minute batch, the request will be re-scheduled for the next batch. The NCCM is designed to take advantage of multiple NetYCE servers that can perform NCCM tasks. The '' | ||
+ | |||
+ | Al in all, allow for 10-15 minutes for the NCCM to complete when triggered by syslog. | ||
+ | |||
+ | For configuration changes initiated by NetYCE jobs, the NCCM will be updated immediately by the job itself. The resulting syslog messages will be ignored as they are processed within the 10 minute window. | ||
+ | |||
+ | |||
+ | ==== YCE Events daemon ==== | ||
+ | |||
+ | The task of filtering, deduplication and detecting a configuration change message is built into the daemon process **yce_events**. This daemon is controlled by the configuration file '' | ||
+ | |||
+ | The '' | ||
+ | |||
+ | < | ||
+ | # | ||
+ | # Juniper | ||
+ | # | ||
+ | type=SingleWithSuppress | ||
+ | ptype=RegExp | ||
+ | name=Junos | ||
+ | pattern=.*\s(.*)\smgd\[\d+\]: | ||
+ | desc=config save for $1 | ||
+ | action=event config_changed_for_$1 | ||
+ | window=600 | ||
+ | # | ||
+ | # F5 BIGIP | ||
+ | # | ||
+ | type=SingleWithSuppress | ||
+ | ptype=RegExp | ||
+ | name=F5_BigIP | ||
+ | pattern=[\w]{3} [\d]{1,2} [\S]{8} (\S*) notice [\w]+\[\d+\]: | ||
+ | desc=config save for $1 | ||
+ | action=event config_changed_for_$1 | ||
+ | window=600 | ||
+ | # | ||
+ | # HP_C7 normal save or save main | ||
+ | # | ||
+ | type=SingleWithSuppress | ||
+ | ptype=RegExp | ||
+ | name=HP_C7 | ||
+ | pattern=[a-zA-Z]{3}\s{1, | ||
+ | desc=config save for $1 | ||
+ | action=event config_changed_for_$1 | ||
+ | window=600 | ||
+ | # | ||
+ | # HP_C7 normal save main force or save force | ||
+ | # | ||
+ | type=SingleWithSuppress | ||
+ | ptype=RegExp | ||
+ | name=HP_C7_b | ||
+ | pattern=[a-zA-Z]{3}\s\d{1, | ||
+ | desc=config save for $1 | ||
+ | action=event config_changed_for_$1 | ||
+ | window=600 | ||
+ | # | ||
+ | # Arista_EOS | ||
+ | # | ||
+ | type=SingleWithSuppress | ||
+ | ptype=RegExp | ||
+ | name=Arista_EOS | ||
+ | pattern=[a-zA-Z]{3}\s\d{1, | ||
+ | desc=config save for $1 | ||
+ | action=event config_changed_for_$1 | ||
+ | window=600 | ||
+ | # | ||
+ | # Cisco_Nexus | ||
+ | # | ||
+ | type=SingleWithSuppress | ||
+ | ptype=RegExp | ||
+ | name=Cisco_Nexus | ||
+ | pattern=[a-zA-Z]{3}\s\d{1, | ||
+ | desc=config save for $1 | ||
+ | action=event config_changed_for_$1 | ||
+ | window=600 | ||
+ | # | ||
+ | # Cisco_IOS | ||
+ | # | ||
+ | type=SingleWithSuppress | ||
+ | ptype=RegExp | ||
+ | name=Cisco_IOS | ||
+ | pattern=[a-zA-Z]{3}\s+\d{1, | ||
+ | desc=config save for $1 | ||
+ | action=event config_changed_for_$1 | ||
+ | window=600 | ||
+ | # | ||
+ | # HP_C5 normal save, save main, save main force or save force | ||
+ | # | ||
+ | type=SingleWithSuppress | ||
+ | ptype=RegExp | ||
+ | name=HP_C5 | ||
+ | pattern=[a-zA-Z]{3}\s\d{1, | ||
+ | desc=config save for $1 | ||
+ | action=event config_changed_for_$1 | ||
+ | window=600 | ||
+ | # | ||
+ | # Avaya_ERS save | ||
+ | # | ||
+ | type=SingleWithSuppress | ||
+ | ptype=RegExp | ||
+ | name=Avaya_ERS | ||
+ | pattern=[a-zA-Z]{3}\s\d{1, | ||
+ | desc=config save for $1 | ||
+ | action=event config_changed_for_$1 | ||
+ | window=600 | ||
+ | # | ||
+ | # CI_6 save configuration | ||
+ | # | ||
+ | type=SingleWithSuppress | ||
+ | ptype=RegExp | ||
+ | name=CI_6 | ||
+ | pattern=[a-zA-Z]{3}\s\d{1, | ||
+ | desc=config save for $1 | ||
+ | action=event config_changed_for_$1 | ||
+ | window=600 | ||
+ | # | ||
+ | # Aruba_MC write memory | ||
+ | # | ||
+ | type=SingleWithSuppress | ||
+ | ptype=RegExp | ||
+ | name=Aruba_MC | ||
+ | pattern=[a-zA-Z]{3}\s\d{1, | ||
+ | desc=config save for $1 | ||
+ | action=event config_changed_for_$1 | ||
+ | window=600 | ||
+ | # | ||
+ | # Alcatel_OmniSwitch | ||
+ | # | ||
+ | type=SingleWithSuppress | ||
+ | ptype=RegExp | ||
+ | name=Alcatel_OmniSwitch | ||
+ | pattern=[a-zA-Z]{3}\s\d{1, | ||
+ | desc=config save for $1 | ||
+ | action=event config_changed_for_$1 | ||
+ | window=600 | ||
+ | </ | ||
+ | |||
+ | |||
+ | Each vendor has its own pattern(s) to filter against. Note that all of these patterns are regexes, and the first pattern matched into the parentheses ('' | ||
+ | |||
+ | The distributed version of the configuration file has the patterns for the direct syslog message. Depending on the forwarder this pattern must be updated to reflect the modified message. | ||
+ | |||
+ | As the NCCM stores the configurations using the device hostname, the IP-address will be used to do a reverse DNS lookup on that IP-address. Should the DNS provide no results, the NCCM will not be able to retrieve the configuration (without a node name the login credentials and vendor-type will be unknown). | ||
+ | |||
+ | Once a configuration change message is processed, the node's entry in the "Nccm selection" | ||
+ | |||
+ | |||
+ | |||