Download PDF
Home

1. Introduction

1.1. Overview

RBFS logging is the process of writing log messages during the execution of an event. RBFS logging provides you reports about the events in the entire RBFS ecosystem at different functional areas. Almost every component in an RBFS access network generates a varied form of log files. Therefore, there are many different types of logs. All these logs, which are generated from different components, can be exported to the log management server where you can view and analyze the real-time data. It provides you the ability to trace out the errors of the applications in real-time.

RBFS has been designed based on microservices architecture. An RBFS ecosystem contains multiple microservices and these microservices can be divided as Brick Daemons (BD) and other (non-BD) daemons. CtrlD and ApiGwD daemons are part of ONL, but they do not reside inside of RBFS container. BDS provides in-built infrastructure for logging which can be used by all BDS applications.

You can configure logging based on different severity levels available.

This document provides you information about logging in the entire RBFS ecosystem. It includes the RBFS container and the host OS which is ONL in case of hardware switches.

1.2. Logging in RBFS Container

RBFS provides logging for the entire RBFS ecosystem that includes Brick Daemons (BD) and also for other (non-BD) daemons. Brick Daemons are built on top of BDS and other (non-BD) daemons (such as Prometheus) are the ones which are not dependent on BDS.

The RBFS container logging infrastructure provides in-memory (BDS) and traditional (BD) logging support for RBFS applications. The BDS logging is a low-latency and in-memory logging which can be used in a high scale system without compromising much in performance whereas BD logging is a direct write to a file hence CPU-heavy.

RBFS logging

In RBFS, logs are generated from various components or sources such as BDS, Syslog, CTRLD, APIGwD, and Prometheus. All these logs can be finally exported to a log management server.

1.2.1. BDS Logging

BDS logs are stored in a log table. For every unique event, a log ID is created in RBFS. Whenever that particular event is logged, a log entry gets added to the log table. A log table is created for a module only when that module has at least one event logged. Every module in RBFS has at least one log table named in this format: <modulename>.<bd-name>.log.

BDS logging

1.2.1.1. Log Tables

BDS logs are stored in a BDS table. BDS creates a log table for each module in a BD. One entry is added to this log table for every log. Older entries are removed from the table when the number of entries exceeds more than 10,000.

1.2.1.2. Log Maps

Every log is mapped to one specific event that is logged by the application. For the optimized usage of memory, RBFS does not store the verbose strings; instead, it stores the log map as an identifier to the actual string message.

Note Log map and log ID refer to the same entity.

You can access these log maps at the following location:

/usr/share/rtbrick/liblog/logs/

You can see the log maps, organized based on the modules that they belong to, at:

supervisor@rtbrick:/usr/share/rtbrick/liblog/logs$ ls
bds  bgp  fib  fwdinfra  ifm  lldpv2  pd  policy  pubsub  resmon  rib  snapshot  static  time_series

In the preceding example, you can see the modules that have registered with the log maps.

If you want to know more about a particular log map, you can perform a grep of the log map in this directory.

1.2.1.3. Log Groups

A log group is a collection of log maps or log IDs. Groups have been introduced to simplify the log configuration tasks. For example, to debug a BGP peer issue, instead of enabling logs for individual log IDs that are related to BGP peer, you can enable log for a log group BGP peer.

1.2.1.4. Log Modules

Every BDS application consists of multiple modules. Logging can be configured for each BDS modules separately.

The following are RBFS modules:

bcm_q2c
bgp
fib
hostconfd
ifm
igmp
ipoe
isis
l2tp
lag
ldp
license
lldp
mrib
ospf
pim
policy
poold
pppoe
resmon
rib
rtbrick-cli
secure_management
snapshot
subsMgmt
static
time_series
vpp
1.2.1.5. Plugin Alias

Any logs in RBFS can be exported to an external logging destination. Currently, CtrlD supports GELF and syslog as external plugins.

CtrlD is the egress node for all the GELF (Graylog Extended Log Format) messages. The brick daemons which are configured to send GELF messages to CtrlD and CtrlD forwards them to the configured endpoints such as syslog or GELF endpoint. This is because CtrlD enhances the GELF message with switch-global settings (for example, the serial number of the switch).

graylog
1.2.1.6. Guidelines and Limitations for BDS Logging
  • By default, BDS logging is enabled and the log level is set to 'Error'.

  • By default, logging for BDS and PUBSUB modules have been disabled. As these two modules are infrastructure specific, these logs may not be useful for end-users. However, developers can enable logging for these modules using debug commands.

  • You can configure log levels per BD, per module, or per group.

  • Do not keep logging enabled for longer duration in a scaled setup.

  • The following log levels are present in the system. Any level above the level Warning indicates that you should perform logging with caution as a scaled environment may cause a system instability.

    • Emergency

    • Alert

    • Critical

    • Error

    • Warning

    • Notice

    • Info

    • Debug

    • None

Note If your system becomes unstable, you can remove the logging configuration using the delete log command in configuration mode.
Note
  • All log levels lower than the log level specified are logged. For example, if the specified log level is "Warning", then all logs that come before "Warning" (Emergency, Alert, Critical, Error, Warning) are logged.

  • When you set the log-level to "None", that means log has been disables for the specific module, group, or global.

1.2.2. Syslog

Syslog is generated by an API based logging mechanism provided by Linux. Some of the open source libraries present in RBFS use Syslog as a logging mechanism.

Host operating system and RBFS Linux container use syslog for logging. Syslog can also be exported to Graylog.

Syslog messages can also be exported to CtrlD and these messages are forwarded to the defined log management servers. Currently, RBFS supports exporting syslog from the Linux and ONL system facilities such as auth, authpriv, daemon, and kern to Graylog

For information about Syslog configuration, see section LXC and ONL Logging Configuration.

1.2.3. TSDB (Prometheus) Alert Messages

Prometheus is the systems and service monitoring application, which can be deployed in RBFS, to collect and process metrics. In RBFS, alert messages generated from Prometheus are forwarded to CtrlD and these messages, from CtrlD, can be exported to the configured log management servers.

1.3. Logging in ONL

In RBFS, there are daemons, which are not part of RBFS container, but run on the ONL host. RBFS provides logging for these daemons. The following are the daemons which reside on the ONL host:

hostconfd
CtrlD
ApiGwD

1.3.1. CtrlD and ApiGwD Logs

CtrlD logging provide log messages of events related to business, elements, ZTP, and security. ApiGwD logs contain details about who accessed the API and how they accessed it. hostconfd provides rest APIs to interact with container and ONL linux services.

ApiGwD`and `CtrlD send different log messages about status changes or progress of processes to the configured GELF endpoint.

1.4. Supported Platforms

Not all features are necessarily supported on each hardware platform. Refer to the Platform Guide for the features and the sub-features that are or are not supported by each platform.

2. Logging Configuration

2.1. Configuration Hierarchy

The diagram illustrates the logging configuration hierarchy.

Logging Configuration Hierarchy

2.2. Configuration Syntax and Commands

The following sections describe the logging configuration syntax and commands.

2.2.1. BDS Logging Configuration

You can configure BDS logging for a BD, a module, and for a group.

Note A specific configuration takes priority over a generic configuration. For example, if you have configured a global log level of bgp.iod.1 to "warning", and you have configured a log level of bgp module to "notice", then the final log level of bgp will be "notice".
2.2.1.1. Configuring BDS Logging for a BD

BDS logging can be configured for a BD.

Syntax:

set log bd <bd-name> <option> …​

Attribute Description

<bd-name>

Configure for the specified BD name.

all

Configure for all BDs.

module <module-name>

Module name. For more information, see the section "Configuring BDS Logging for a Module".

plugin-alias alias-name <alias-name>

Plugin alias name

plugin-alias level <level>

Log severity level. You can filter logs based on the log severity levels for sending to the external log management server. This will help you to send only the required log messages to the log management server instead of sending a whole lot of data.

For example, if you configure Warning as the severity level, logs with the severity level 'Warning' and all the log levels above Warning such as Error, Critical, Alert, and Emergency will be sent to the log management server.

Example 1: BDS logging for a BD Configuration

{
  "ietf-restconf:data": {
    "rtbrick-config:system": {},
    "rtbrick-config:log": {
      "bd": [
        {
          "bd-name": "bgp.iod.1",
          "level": "info",
          "plugin-alias": {
            "alias-name": "ztp",
            "level": "error"
          }
        }
      ]
    }
2.2.1.2. Configuring BDS Logging for a Module

Logging can be configured for a module such as BGP, IS-IS, and so on.

Syntax:

set log module <module-name> <option> …​

Attribute Description

<module-name>

Module name

group <group-name>

BDS log module log-group configuration. For more information, see the section "Configuring BDS Logging for a Group".

level <level>

Log severity level.

plugin-alias alias-name <alias-name>

Plugin alias name

plugin-alias level <level>

Log level. You can filter logs based on the log severity levels for sending to the log management server. This will help you to send only the required log messages to the log management server instead of sending a whole lot of data.

For example, if you configure Warning as the severity level, logs with the severity level 'Warning' and all the log levels above Warning such as Error, Critical, Alert, and Emergency will be sent to the log management server.

Example 1: Logging Module Configuration

{
  "ietf-restconf:data": {
    "rtbrick-config:system": {},
    "rtbrick-config:log": {
      "module": [
        {
          "module-name": "igmp",
          "level": "info",
          "plugin-alias": {
            "alias-name": "graylog-srv1",
            "level": "warning"
          }
        }
      ]
    }
  }
}
2.2.1.3. Configuring BDS Logging for a Group

Logging can be configured at the group hierarchy level.

Syntax:

set log module <module-name> group <group-name> <option> …​

Attribute Description

<group-name>

Group name

level <level>

Specifies the level of the plug-in alias.

rate-limit <rate-limit>

Rate-limiting is only supported for log groups. Configuring a higher rate-limit for a whole module may cause system instability due to generation of high volume of logs. The default value is 10.

plugin-alias alias-name <alias-name>

Plugin alias name

plugin-alias level <level>

Specifies the level of the plug-in alias. You can filter logs based on the log severity levels for sending to the log management server. This will help you to send only the required log messages to the log management server instead of sending a whole lot of data.

For example, if you configure Warning as the severity level, logs with the severity level 'Warning' and all the log levels above Warning such as Error, Critical, Alert, and Emergency will be sent to the log management server.

Example 1: Logging Group Configuration

{
  "ietf-restconf:data": {
    "rtbrick-config:log": {
      "module": [
        {
          "module-name": "bgp",
          "group": [
            {
              "group-name": "interface",
              "level": "warning"
            }
          ]
        }
      ]
    }
  }
}

2.2.2. System Logging Configuration

2.2.2.1. LXC and ONL Logging Configuration

You can configure an external log management server to transport logs for real-time analysis. Currently, Syslog and Graylog are the log management servers supported by RBFS.

You can send logs from Linux and ONL system facilities such as auth, authpriv, daemon, and kern to the log management server.

Syntax:

set log system facility <facility-name> plugin-alias <attribute> <value>

Attribute Description

<facility-name>

Supported facilities include all, auth, authpriv, daemon, and kern.

plugin-alias alias-name <alias-name>

Plugin alias name

plugin-alias level <level>

Specify the level of the plug-in alias. You can filter logs based on the log severity levels for sending to the log management server. This will help you to send only the required log messages to the log management server instead of sending a whole lot of data.

For example, if you configure Warning as the severity level, logs with the severity level 'Warning' and all the log levels above Warning such as Error, Critical, Alert, and Emergency will be sent to the log management server.

Example 1: System Log Configuration

{
  "ietf-restconf:data": {
    "rtbrick-config:log": {
      "system": {
        "facility": [
          {
            "facility-name": "kern",
            "plugin-alias": {
              "alias-name": "graylog",
              "level": "notice"
            }
          }
        ]
      }
    }
  }
}

2.2.3. External Log Server (Plugin Alias) Configuration

You can configure an external log management server as a destination to transport logs.

Syntax:

set system host log-alias <attribute> <value>

Attribute Description

<name>

Log alias name

<address>

Plugin address. For example, Gelf: http://11.1.1.1:1102/gelf Syslog: 10.1.1.1:8008

level

Severity level for the log.

network

Log alias endpoint port.

type

Server type of log alias.

Example 1: Log alias Configuration

set system host log-alias bng endpoint http://10.1.1.1:1102/gelf
set system host log-alias bng endpoint http://10.1.1.1:1102/gelf type gelf
set system host log-alias bng endpoint http://10.1.1.1:1102/gelf network http
set system host log-alias bng endpoint http://10.1.1.1:1102/gelf level info
{
  "ietf-restconf:data": {
    "rtbrick-config:system": {
      "host": {
        "log-alias": [
          {
            "name": "bng",
            "endpoint": [
              {
                "address": "http://10.1.1.1:1102/gelf",
                "type": "gelf",
                "network": "http",
                "level": "info"
              }
            ]
          }
        ]
      }
    }
  }
}

2.2.4. CtrlD Logging Configuration

When you configure a plugin alias in RBFS, the log message is forwarded to CtrlD. CtrlD forwards it to the corresponding the log management server endpoint alias that you configured.

You must add the log management server endpoint in the CtrlD start-up configuration before configuring a plugin-alias in RBFS.

Note If the configured plugin-alias name does not match any of the log management server endpoint name configured in CtrlD, the log is sent to the default the log management server endpoint ("graylog_url").

For Graylog support, you need to configure logging in the CtrlD.

RBFS logs can be sent to the log management server servers. This can be achieved by configuring a plugin alias in CtrlD.

The following section describe the tasks to be performed to configure the plugin alias in CtrlD:

config.json

This section describes the main configuration file of CtrlD. This file can be changed via API. If it is changed on the file system, CtrlD has to be restarted.

/etc/rtbrick/ctrld/config.json example

{
  "graylog_enable": true,
  "graylog_url": "http://198.51.100.149:12201/gelf",
  "graylog_endpoints": [
    {
      "name": "ztp",
      "url": "http://198.51.100.146:12201/gelf"
    }
  ]
}
Table 1. /etc/rtbrick/ctrld/config.json format
Name Type Description

graylog_enable

bool

To Enable all Graylog outgoing messages

graylog_url

string

Graylog url e.g. http://198.51.100.11:12201/gelf

graylog_heart_beat_interval

string

Graylog heartbeat Interval in seconds (⇐0 means deactivated)

graylog_endpoints

GraylogEndpoints allows to specify multiple graylog endpoints by name. If a log to a specific endpoint is requested and the endpoint is not available, the log is send to the default Graylog endpoint.

Name Type Description

name

string

Logical name of the entpoint e.g.: ztp for ztp messages.

url

string

Graylog url e.g. http://198.51.100.11:12201/gelf

disable

string

Disables this endpoint.

If the default endpoint is disabled, but the specific one is enabled than the message to the specific endpoint will be sent.

If the default endpoint is enabled, but the specific one is disabled than the message to the specific endpoint will not be sent.

3. Operational Commands

The logging operational commands provide information about the logging operations. They are used to show logs in the system, log configuration status and so on.

3.1. BDS Logging

The BDS logging show commands provide information about the BDS logging operations. With the BDS logging operational commands, you can verify BDS logging configuration status and view BDS logs.

3.1.1. Verifying BDS Logging Configuration Status

3.1.1.1. Show Log Status

This command shows log configuration status for all modules except infrastructure modules in all BDs. The default show log status displays the summary of log status for the whole system and there are options available to show specific module or BD log status.

Syntax:

show log status <attribute> <value>

Option Description

-

Without any option, the command displays the log configuration status for all modules except infrastructure modules in all BDs.

bd <bd-name>

Displays log status of the all modules including infrastructure in the specified BD.

detail

Displays the log configuration status in detail all the way till log IDs.

module <module-name>

Displays the log status for a given module in all BDs where this module is running.

Example 1: Summary of log status

supervisor@rtbrick: cfg> show log status
Module log status:
  bds_mock:
    confd:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        generic                  error          None                     none           10
  bgp:
    confd:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        config                   error          None                     none           10
        general                  error          None                     none           10
        generic                  error          None                     none           10
        instance                 error          None                     none           10
        interface                warning        None                     none           10
        message                  error          None                     none           10
        peer                     error          None                     none           10
    bgp.appd.1:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        config                   error          None                     none           10
        general                  error          None                     none           10
        generic                  error          None                     none           10
        instance                 error          None                     none           10
        interface                warning        None                     none           10
        message                  error          None                     none           10
        peer                     error          None                     none           10
    bgp.iod.1:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        config                   error          None                     none           10
        general                  error          None                     none           10
        generic                  error          None                     none           10
        instance                 error          None                     none           10
        interface                warning        None                     none           10
        message                  error          None                     none           10
        peer                     error          None                     none           10
  fib:
    confd:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        adjacency                error          None                     none           10
        bds                      error          None                     none           10
        config                   error          None                     none           10
        general                  error          None                     none           10
        generic                  error          None                     none           10
        instance-afi-safi        error          None                     none           10
        interface-events         error          None                     none           10
        route                    error          None                     none           10
  fwdinfra:
    ribd:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        generic                  error          None                     none           10
    confd:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        generic                  error          None                     none           10
    staticd:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        generic                  error          None                     none           10
    ifmd:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        generic                  error          None                     none           10
    mribd:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        generic                  error          None                     none           10
  hostconfd:
    confd:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        bds                      error          None                     none           10
        config                   error          None                     none           10
        functional               error          None                     none           10
        generic                  error          None                     none           10
  ifm:
    confd:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        bds                      error          None                     none           10
        config                   error          None                     none           10
        general                  error          None                     none           10
        generic                  error          None                     none           10
        interface-events         error          None                     none           10
    ifmd:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        bds                      error          None                     none           10
        config                   error          None                     none           10
        general                  error          None                     none           10
        generic                  error          None                     none           10
        interface-events         error          None                     none           10
  igmp:
    pim.appd.1:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        config                   error          None                     none           10
        generic                  error          None                     none           10
        igmp-interface-events    error          None                     none           10
        igmp-membership-events   error          None                     none           10
        igmp-packet-events       error          None                     none           10
        igmp-route-events        error          None                     none           10
    confd:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        config                   error          None                     none           10
        generic                  error          None                     none           10
        igmp-interface-events    error          None                     none           10
        igmp-membership-events   error          None                     none           10
        igmp-packet-events       error          None                     none           10
        igmp-route-events        error          None                     none           10
    igmp.appd.1:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        config                   error          None                     none           10
        generic                  error          None                     none           10
        igmp-interface-events    error          None                     none           10
        igmp-membership-events   error          None                     none           10
        igmp-packet-events       error          None                     none           10
        igmp-route-events        error          None                     none           10
    pim.iod.1:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        config                   error          None                     none           10
        generic                  error          None                     none           10
        igmp-interface-events    error          None                     none           10

Example 2: View of module log status

supervisor@rtbrick: cfg>  show log status module bgp
Module log status:
  bgp:
    confd:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        config                   error          None                     none           10
        general                  error          None                     none           10
        generic                  error          None                     none           10
        instance                 error          None                     none           10
        interface                warning        None                     none           10
        message                  error          None                     none           10
        peer                     error          None                     none           10
    bgp.appd.1:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        config                   error          None                     none           10
        general                  error          None                     none           10
        generic                  error          None                     none           10
        instance                 error          None                     none           10
        interface                warning        None                     none           10
        message                  error          None                     none           10
        peer                     error          None                     none           10
    bgp.iod.1:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        config                   error          None                     none           10
        general                  error          None                     none           10
        generic                  error          None                     none           10
        instance                 error          None                     none           10
        interface                warning        None                     none           10
        message                  error          None                     none           10
        peer                     error          None                     none           10

Example 3: Log status of the all modules including infrastructure in the specified BD.

supervisor@rtbrick: cfg> show log status bd bgp.appd.1
System/File log status:
  Level: error

Module log status:
  bd:
    Level: none, Plugin: None, Plugin Level: none
    Log group status:
      Group                    Level          Plugin                   Level          Rate limit
      generic                  none           None                     none           10
      http                     none           None                     none           10
  bds:
    Level: none, Plugin: None, Plugin Level: none
    Log group status:
      Group                    Level          Plugin                   Level          Rate limit
      generic                  none           None                     none           10
      object                   none           None                     none           10
      table                    none           None                     none           10
      trim                     none           None                     none           10
  bgp:
    Level: error, Plugin: None, Plugin Level: none
    Log group status:
      Group                    Level          Plugin                   Level          Rate limit
      config                   error          None                     none           10
      general                  error          None                     none           10
      generic                  error          None                     none           10
      instance                 error          None                     none           10
      interface                warning        None                     none           10
      message                  error          None                     none           10
      peer                     error          None                     none           10
  license:
    Level: error, Plugin: None, Plugin Level: none
    Log group status:
      Group                    Level          Plugin                   Level          Rate limit
      generic                  error          None                     none           10
      internal                 error          None                     none           10
      operational              error          None                     none           10
  policy:
    Level: error, Plugin: None, Plugin Level: none
    Log group status:
      Group                    Level          Plugin                   Level          Rate limit
      BDS                      error          None                     none           10
      Configuration            error          None                     none           10
      Enforcement              error          None                     none           10
      Generation               error          None                     none           10
      generic                  error          None                     none           10
  poold:
    Level: error, Plugin: None, Plugin Level: none
    Log group status:
      Group                    Level          Plugin                   Level          Rate limit
      generic                  error          None                     none           10
  pubsub:
    Level: none, Plugin: None, Plugin Level: none
    Log group status:
      Group                    Level          Plugin                   Level          Rate limit
      generic                  none           None                     none           10
  secure_management:
    Level: error, Plugin: None, Plugin Level: none
    Log group status:
      Group                    Level          Plugin                   Level          Rate limit
      generic                  error          None                     none           10
  snapshot:
    Level: error, Plugin: None, Plugin Level: none
    Log group status:
      Group                    Level          Plugin                   Level          Rate limit
      generic                  error          None                     none           10
  time_series:
    Level: error, Plugin: None, Plugin Level: none
    Log group status:
      Group                    Level          Plugin                   Level          Rate limit
      generic                  error          None                     none           10

Example 4: Log status for given module in the given BD

supervisor@rtbrick: cfg>  show log status module bgp bd bgp.appd.1
Module log status:
  bgp:
    bgp.appd.1:
      Level: error, Plugin: None, Plugin Level: none
      Log group status:
        Group                    Level          Plugin                   Plugin Level   Rate limit
        config                   error          None                     none           10
        general                  error          None                     none           10
        generic                  error          None                     none           10
        instance                 error          None                     none           10
        interface                warning        None                     none           10
        message                  error          None                     none           10
        peer                     error          None                     none           10

Example 5: Log status for active logs per log ID

supervisor@rtbrick: cfg> show log status bd bgp.appd.1 detail
System/File log status:
  Level: error

Module log status:
  bd:
    Level: none, Plugin: None, Plugin Level: none
    Log group status:
      generic, Level: none, Plugin: None, Plugin Level: none, Rate limit: 10
      http, Level: none, Plugin: None, Plugin Level: none, Rate limit: 10
     Log ID status:
        LOG ID                                                                Level          Plugin                   Level          Rate limit
        HTTP_JWK_FILE_JSON_PARSE_FAILED                                       none           None                     none           10
        HTTP_JWK_FILE_MEM_ALLOC_FAILED                                        none           None                     none           10
        HTTP_JWK_FILE_MISSING                                                 none           None                     none           10
        HTTP_JWK_FILE_OPEN_FAILED                                             none           None                     none           10
        HTTP_JWK_FILE_READ_FAILED                                             none           None                     none           10
        HTTP_JWK_MISSING_KEY                                                  none           None                     none           10
        HTTP_JWK_MULTIPLE_KEYS                                                none           None                     none           10
        HTTP_SEND                                                             none           None                     none           10
        HTTP_WRITE_BUFFER_MEM_ALLOC_FAILED                                    none           None                     none           10
        HTTP_WRITE_PRINTF_FAILED                                              none           None                     none           10
  bds:
    Level: none, Plugin: None, Plugin Level: none
    Log group status:
      generic, Level: none, Plugin: None, Plugin Level: none, Rate limit: 10
     Log ID status:
        LOG ID                                                                Level          Plugin                   Level          Rate limit
        BDS_ATTRIBUTE_TEMPLATE_EVENT                                          none           None                     none           10
        BDS_INVALID_PARAMS                                                    none           None                     none           10
        BDS_PUBSUB_ERROR_STATUS                                               none           None                     none           10
        BDS_QUEUE_TABLE                                                       none           None                     none           10
        BDS_ROOT_EVENT                                                        none           None                     none           10
        BDS_TEST_LOG                                                          none           None                     none           10
      object, Level: none, Plugin: None, Plugin Level: none, Rate limit: 10
     Log ID status:
        LOG ID                                                                Level          Plugin                   Level          Rate limit

3.1.2. Viewing BDS Logs

3.1.2.1. Show Log

This command shows BDS logs in the log tables. By default, the command show log shows all logs present in the log tables. Various command options are available to filter and display logs. Also, a command option is available to send logs into a file.

Syntax:

show log <option>

Option Description

-

Without any option, the command displays all logs present in the log tables.

filter <level> <module>

Render output of the log can be filtered for the specified module or the log level. You can specify filter level or module with any of the view log command, so that the logs are filtered based on the specified level or module.

format <abstract |summary |detailed>

Choose any of the three formats: abstract, summary, or detailed. This command provides output in the specified output format. You can specify any of the options at end of any of the view log commands to show logs in a specific output format. By default, summary is the log format.
Abstract: Shows logs without metadata
Detailed: Shows logs in detail with metadata
Summary: Shows logs in summary view with metadata

table <name>

Displays logs from a specified log table. Every BD includes multiple log tables. By default, log will be rendered from every log table, if not specified.

to file <filename>

Name of the file in which logs are transported. You can specify to file and the file name at end of any view log command to transport the log to the file.

Example 1: View of logs

supervisor@rtbrick: op> show log
[  Error   ] <2021-07-09T04:35:53.184694+0000> Table [global.hostconfd.table.config] - event Failed to open file
[  Error   ] <2021-07-09T04:35:53.184771+0000> Table [global.hostconfd.table.config] - event Could not create snapshot block
[  Error   ] <2021-07-09T04:35:53.184849+0000> Table [global.hostconfd.table.config] - event Failed to open file
[  Error   ] <2021-07-09T04:35:53.184866+0000> Table [global.hostconfd.table.config] - event Could not create snapshot block
[  Error   ] <2021-07-09T04:35:53.201029+0000> Table [global.time-series.config] - event Failed to open file
[  Error   ] <2021-07-09T04:35:53.201052+0000> Table [global.time-series.config] - event Could not create snapshot block
[  Error   ] <2021-07-09T04:35:53.201106+0000> Table [global.time-series.config] - event Failed to open file
[  Error   ] <2021-07-09T04:35:53.201125+0000> Table [global.time-series.config] - event Could not create snapshot block
[  Error   ] <2021-07-09T04:35:53.222660+0000> Table [secure.global.system.table.config] - event Failed to open file
[  Error   ] <2021-07-09T04:35:53.222679+0000> Table [secure.global.system.table.config] - event Could not create snapshot block
[  Error   ] <2021-07-09T04:36:00.720574+0000> Table [global.tacacs.config] Object [name - tacacs_config_object] attribute - tacacs_server_ip not found event TACACS Server Hostconfd Config

Example 2: Summary view for the show log table

supervisor@rtbrick: op> show log table secure_management.confd.log
[  Error   ] <Tue Nov 10 19:44:48 GMT +0000 2020> Table [global.tacacs.config] Object [name - tacacs_config_object] attribute - tacacs_server_ip not found event TACACS Server Hostconfd Config

Example 3: View of applied filters on all logs from a single table

supervisor@: op> show log table rtbrick-cli.confd.log filter level Info
[   Info   ] <Thu Nov 12 11:20:29 GMT +0000 2020> Commit Success
[   Info   ] <Thu Nov 12 11:21:08 GMT +0000 2020> Advertise:true | Snapshot type:2 | Table name:global.system.confrtbrickig.table | Table type:system_config_table | Deferred:false | Interval:0 | Type:0 | Consume:false
[   Info   ] <Thu Nov 12 11:21:08 GMT +0000 2020> No keys to inherit, yang node identifier: table-type system_config_table,  table-getter symbol name : confd_system_config_tbl_tmpl_get , libname : libconfd.so
[   Info   ] <Thu Nov 12 11:21:08 GMT +0000 2020> Advertise:true | Snapshot type:2 | Table name:global.rtbrick.hostname.config | Table type:global_rtbrick_hostname_tbl | Deferred:false | Interval:0 | Type:0 | Consume:false
[   Info   ] <Thu Nov 12 11:21:08 GMT +0000 2020> No keys to inherit, yang node identifier: table-type global_rtbrick_hostname_tbl,  table-getter symbol name : confd_rtbrick_hostname_config_tbl_tmpl_get , libname : libconfd.so
[   Info   ] <Thu Nov 12 11:21:08 GMT +0000 2020> Commit Success

Example 4: Show Log to File

supervisor@rtbrick: op> show log to file test.log
supervisor@rtbrick: op> exit
supervisor@rtbrick:~ $ cat test.log
[   info   ] <2022-05-10T11:53:15.399613+0000> Global config for Instance(default) is added
[   info   ] <2022-05-10T11:53:15.400666+0000> Global address family(ipv4, unicast) is added in Instance(default)
[   info   ] <2022-05-10T11:53:15.400711+0000> Global address family(ipv4, multicast) is added in Instance(default)
[   info   ] <2022-05-10T11:53:15.400729+0000> Global address family(ipv4, labeled-unicast) is added in Instance(default)
[   info   ] <2022-05-10T11:53:15.400744+0000> Global address family(ipv6, unicast) is added in Instance(default)
[   info   ] <2022-05-10T11:53:15.400758+0000> Global address family(ipv6, multicast) is added in Instance(default)
[   info   ] <2022-05-10T11:53:15.400773+0000> Global address family(ipv6, labeled-unicast) is added in Instance(default)
[   info   ] <2022-05-10T11:53:15.400787+0000> Global address family(mpls, unicast) is added in Instance(default)
[   info   ] <2022-05-10T11:53:07.757687+0000> User 'supervisor' executed command 'show log'
[   info   ] <2022-05-10T11:53:10.751083+0000> User 'supervisor' executed command 'show log'
[   info   ] <2022-05-10T11:53:15.338391+0000> Failed due to bds events- {table:global_ntp_config_tbl}
[   info   ] <2022-05-10T11:53:15.338442+0000> Failed due to bds events- {table:ipmi_user_config_table}
[   info   ] <2022-05-10T11:53:15.338469+0000> Failed due to bds events- {table:lum_config_table}
[   info   ] <2022-05-10T11:53:15.338491+0000> Failed due to bds events- {table:ipmi_interface_config_table}
[   info   ] <2022-05-10T11:53:15.338509+0000> Failed due to bds events- {table:authorization_config_table}
[   info   ] <2022-05-10T11:53:07.644676+0000> Commit Success
[   info   ] <2022-05-10T11:53:15.337573+0000> Table - global_tacacs_config_tbl object not found event secure_hostconfd_write_config
[   info   ] <2022-05-10T11:53:15.337602+0000> Table [global.tacacs.config] Object [name - tacacs_config_object] attribute - tacacs_server_ip not found event TACACS Server Hostconfd Config
[   info   ] <2022-05-10T11:53:15.337241+0000> No objects present in alert configuration table to send to hostconfd

Example 5: Logs for filter level

supervisor@rtbrick: op> show log filter level Error
[  Error   ] <Tue Nov 10 19:44:31 GMT +0000 2020> Table [/var/rtbrick/commit_registry/global.commit.registry.snap] - event Could not open file for reading
[  Error   ] <Tue Nov 10 19:44:48 GMT +0000 2020> Table [global.tacacs.config] Object [name - tacacs_config_object] attribute - tacacs_server_ip not found event TACACS Server Hostconfd Config

Example 6: Logs for specified module

supervisor@rtbrick: op> show log filter module secure_management
[  Error   ] <Tue Nov 10 19:44:48 GMT +0000 2020> Table [global.tacacs.config] Object [name - tacacs_config_object] attribute - tacacs_server_ip not found event TACACS Server Hostconfd Config
supervisor@leaf: op>

Example 7: View of the logs in abstract format

supervisor@rtbrick: op> show log format abstract
Table [/var/rtbrick/commit_registry/global.commit.registry.snap] - event Could not open file for reading
Commit Success
CLI candidate config deletion begin
CLI candidate config deletion ends, status : success
CLI candidate config addition begin
Advertise:true | Snapshot type:2 | Table name:global.system.config.table | Table type:system_config_table | Deferred:false | Interval:0 | Type:0 | Consume:false
No keys to inherit, yang node identifier: table-type system_config_table,  table-getter symbol name : confd_system_config_tbl_tmpl_get , libname : libconfd.so
Setting attribute > Table name : global.system.config.table, object : system_config_object, command-token-name : name, attribute-name : configuration_name, value : rtbrick, type : string
BDS object found
Processing TARGET transaction and replaying ADD, xml_name : system
Setting attribute > Table name : global.system.config.table, object : system_config_object, command-token-name : name, attribute-name : configuration_name, value : rtbrick, type : string
Table name global.system.config.table, object name system_config_object
Table name global.system.config.table, object name system_config_object, status success
Advertise:true | Snapshot type:2 | Table name:global.rtbrick.hostname.config | Table type:global_rtbrick_hostname_tbl | Deferred:false | Interval:0 | Type:0 | Consume:false
No keys to inherit, yang node identifier: table-type global_rtbrick_hostname_tbl,  table-getter symbol name : confd_rtbrick_hostname_config_tbl_tmpl_get , libname : libconfd.so

3.1.3. BDS Logging Clear Commands

Clear commands allow you to delete existing logs.

3.1.4. Clear Logs

This commands resets all logs.

Syntax:

clear log <option> …​

Option Description

bd <bd-name>

Clear all BDS logs from the given BD.

table <table-name>

Clears the specified log table.

3.2. Viewing ONL Log Files

ONL log files are available at the following directory:

CtrlD log files are available at:

/var/log/rtbrick-ctrld.log`

Example: CtrlD Logs

supervisor@onl>ufi06.q2c.u25.r4.nbg.rtbrick.net:/var/log $ tail -10 rtbrick-ctrld.log
2022-05-04 08:31:24 UTC INF HTTP request completed host=198.51.100.29:19091 method=GET path=/api/v1/rbfs/elements/ufi06.q2c.u25.r4.nbg.rtbrick.net/services/prometheus/proxy/federate remote_addr=198.51.100.49:41508 request_id=R4n9-tadb statuscode=200 user_name= user_subject=
2022-05-04 08:31:24 UTC INF HTTP request completed host=198.51.100.29:19091 method=GET path=/api/v1/ctrld/info remote_addr=198.51.100.121:34158 request_id=yFn9Ptadb statuscode=200 user_name= user_subject=
2022-05-04 08:31:24 UTC INF HTTP request completed host=198.51.100.31:19091 method=GET path=/api/v1/ctrld/system/clock remote_addr=198.51.100.10:57824 request_id=_cno-gadu statuscode=200 user_name= user_subject=
2022-05-04 08:31:25 UTC INF HTTP request completed host=198.51.100.29:19091 method=GET path=/api/v1/rbfs/elements/rtbrick/services/PROMETHEUS/proxy/federate remote_addr=198.51.100.229:39654 request_id=DXSoPgaHu statuscode=404 user_name= user_subject=
2022-05-04 08:31:29 UTC INF HTTP request completed host=198.51.100.29:19091 method=GET path=/api/v1/rbfs/elements/ufi06.q2c.u25.r4.nbg.rtbrick.net/services/prometheus/proxy/federate remote_addr=198.51.100.49:41508 request_id=iQqo-gaHu statuscode=200 user_name= user_subject=
2022-05-04 08:31:34 UTC INF HTTP request completed host=198.51.100.29:19091 method=GET path=/api/v1/rbfs/elements/ufi06.q2c.u25.r4.nbg.rtbrick.net/services/prometheus/proxy/federate remote_addr=198.51.100.49:41508 request_id=LWM9PgrHb statuscode=200 user_name= user_subject=

ApiGwD log files are available at:

/var/log/rtbrick-apigwd.log

Example: API Gateway Logs

supervisor@onl>ufi06.q2c.u25.r4.nbg.rtbrick.net:/var/log $ cat rtbrick-apigwd.log
Tue May  3 23:27:12 UTC 2022 Starting rtbrick apigwd service
Version: v0.10.0-internal.20220222110916+Bdevelopment.C2a896336 (built with go1.17.7)
2022-05-03 23:27:12 UTC INF development/apigwd/pkg/options/options.go:158 > watching for file change /etc/rtbrick/apigwd/config.json
2022-05-03 23:27:12 UTC INF development/apigwd/cmd/apigwd/server.go:29 > listening on listen_addr=:12321
2022-05-03 23:27:12 UTC INF development/apigwd/cmd/apigwd/server.go:89 > certman: certificate and key loaded
2022-05-03 23:27:12 UTC INF development/apigwd/cmd/apigwd/server.go:89 > certman: watching for cert and key change
2022-05-03 23:28:15 UTC INF development/apigwd/pkg/options/options.go:165 > watch event: {/etc/rtbrick/apigwd/config.json 2}
2022-05-03 23:28:15 UTC INF development/apigwd/pkg/options/options.go:165 > watch event: {/etc/rtbrick/apigwd/config.json 2}
2022-05-03 23:28:15 UTC INF development/apigwd/cmd/apigwd/routes.go:62 > reloaded request limiter config
2022-05-03 23:28:15 UTC INF development/apigwd/cmd/apigwd/routes.go:62 > reloaded request limiter config

3.3. Viewing Logs in Graylog

For viewing your log data on Graylog, perform the following steps:

  1. Open the Graylog webpage.

  2. Log in using your user credentials.

graylog
  1. Click System and select Input.

graylog
  1. Click the Show received message tab.

graylog

The log messages page appears.

4. RBFS Log Reference

RBFS generates logs for various events. RBFS logs are record of events which occur on different functional components or modules in RBFS.

RBFS logs are categorized based on demons or modules from which they are produced. The following are some of the example scenarios when event logs are generated:

  • Failure conditions such as failure in decoding received DHCP relay packet or failure to access a configuration file.

  • Normal operations such as when an IPoE subscriber is created or deleted and an interface has been configured and so on.

  • Critical conditions such as power failure.

This document provides log information such as log ID, message, description and module, severity level and recommended actions.

Log Destination You can locate and view the logs using multiple interfaces which include RBFS command line interface. RBFS also supports exporting logs to external log management servers such as Syslog server and Graylog server for real-time analysis.

You can view the logs in the RBFS command line interface using the show log command. Various command options are available to filter and display logs. For more information, see the Operational Commands section.

4.1. BD Log Messages

Log ID

HTTP_SEND

Message

Send response for request endpoint %s %s buf count %s state %s

Description

Sent response details.

Log Module

bd

Log Group

http

Severity

INFO

Recommended Actions

No action required.


Log ID

HTTP_JWK_FILE_READ_FAILED

Message

Failed to read keys from JWK file %s

Description

Failed to read keys from the JSON Web Key (JWK) file.

Log Module

bd

Log Group

http

Severity

ERROR

Recommended Actions

Contact RtBrick Customer Support.


Log ID

HTTP_JWK_MULTIPLE_KEYS

Message

Multiple keys in JWK secret file

Description

Multiple keys in the JSON Web Key secret file.

Log Module

bd

Log Group

http

Severity

ERROR

Recommended Actions

Contact RtBrick Customer Support


Log ID

HTTP_JWK_FILE_MISSING

Message

JSON Web Key file %s not found

Description

The JSON Web Key file is not available.

Log Module

bd

Log Group

http

Severity

ERROR

Recommended Actions

Contact RtBrick Customer Support.


Log ID

HTTP_JWK_FILE_MEM_ALLOC_FAILED

Message

Memory error: unable to allocate %s bytes

Description

Unable to allocate memory to read the JSON Web Key file.

Log Module

bd

Log Group

http

Severity

ERROR

Recommended Actions

Contact RtBrick Customer Support.


Log ID

HTTP_JWK_FILE_OPEN_FAILED

Message

Unable to open JWK file %s

Description

Unable to open the JSON Web Key file.

Log Module

bd

Log Group

http

Severity

ERROR

Recommended Actions

Contact RtBrick customer support.


Log ID

HTTP_JWK_MISSING_KEY

Message

Key missing in JWK secret file

Description

Key is missing in the JSON web key secret file.

Log Module

bd

Log Group

http

Severity

ERROR

Recommended Actions

Contact RtBrick customer support.


Log ID

HTTP_JWK_FILE_JSON_PARSE_FAILED

Message

Failed to parse json content from JWK file %s

Description

Failed to parse the JSON content from the JWK file.

Log Module

bd

Log Group

http

Severity

ERROR

Recommended Actions

Contact RtBrick customer support.


Log ID

HTTP_WRITE_BUFFER_MEM_ALLOC_FAILED

Message

Failed to allocate memory for HTTP write buffer of size %s

Description

Failed to allocate memory for the HTTP write buffer.

Log Module

bd

Log Group

http

Severity

ERROR

Recommended Actions

Contact RtBrick customer support.


Log ID

HTTP_WRITE_PRINTF_FAILED

Message

Failed to write data to http write buffer

Description

Failed to write data to the HTTP write buffer.

Log Module

bd

Log Group

http

Severity

ERROR

Recommended Actions

Contact RtBrick customer support.


4.2. BGP Log Messages

Log ID

BGP_PEER_STATE_CHANGE

Message

BGP FSM change, peer %s, source %s, hostname %s, instance %s changed state from %s to %s, reason %s

Description

BGP FSM state has been changed.

Log Module

bgp

Log Group

peer

Severity

Alert

Recommended Actions

If the session is down, verify the reachability of the peer router.


Log ID

BGP_IFL_NBR_ADD

Message

Link-local peer %s discovered on interface %s, instance %s

Description

BGP link-local peer is discovered on the interface.

Log Module

bgp

Log Group

peer

Severity

Notice

Recommended Actions

No action required


Log ID

BGP_IFL_NBR_DEL

Message

Link-local peer %s deleted on interface %s, instance %s

Description

BGP link-local peer has been deleted on the interface.

Log Module

bgp

Log Group

peer

Severity

Notice

Recommended Actions

No action required


Log ID

BGP_PEER_RESET

Message

BGP peer %s, source %s, hostname %s, instance %s reset, reason %s

Description

BGP session reset occurred.

Log Module

bgp

Log Group

peer

Severity

Notice

Recommended Actions

If the session is down, verify the reachability of the peer.


Log ID

BGP_PEER_RESET_FSM_ERR

Message

BGP peer %s, source %s, hostname %s, instance %s reset, reason FSM error subcode %s, message type %s

Description

BGP session reset occurred due to an FSM error.

Log Module

bgp

Log Group

peer

Severity

Info

Recommended Actions

No action required


Log ID

BGP_MSG_OPEN_VERSION

Message

BGP peer %s, source %s, hostname %s, instance %s received open message with version %s

Description

Recieved a BGP Open message with an unsupported version number. Only version 4 is supported.

Log Module

bgp

Log Group

peer

Severity

Info

Recommended Actions

Check whether the other BGP peer supports the BGP version 4.


Log ID

BGP_MSG_OPEN_IDENTIFIER

Message

BGP Open message received with bad identifier %s

Description

BGP Open message is received with a bad identifier.

Log Module

bgp

Log Group

peer

Severity

Info

Recommended Actions

Peer router ID and local router ID are configured with the same value, update the configuration correctly.


Log ID

BGP_MSG_OPEN_HOLDTIMER

Message

BGP peer %s, source %s, hostname %s, instance %s received open message with illegal hold timer %s

Description

BGP Open message is received with a bad hold timer value.

Log Module

bgp

Log Group

peer

Severity

Info

Recommended Actions

Configure the remote router with a holdtimer value more than ā€˜3ā€™.


Log ID

BGP_NO_ROUTER_ID

Message

Router ID is not present in instance %s

Description

BGP Router ID is not present.

Log Module

bgp

Log Group

peer

Severity

Info

Recommended Actions

Configure the local router with the router ID.


Log ID

BGP_NO_LOCAL_AS

Message

Local AS is not configured in instance %s

Description

BGP ā€˜local-asā€™ parameter is not defined in the configuration.

Log Module

bgp

Log Group

peer

Severity

Info

Recommended Actions

Configure the BGP local AS in the BGP peer group.


Log ID

BGP_INVALID_RECEIVED_AS

Message

BGP peer %s, source %s, hostname %s, instance %s received wrong AS %s, expected AS %s

Description

BGP received a wrong AS number from a remote peer.

Log Module

bgp

Log Group

peer

Severity

Info

Recommended Actions

Verify that the ā€˜local-asā€™ parameter is defined in the remote BGP speaker and the ā€˜remote-asā€™ parameter is defined in the peer group configured in the local node are the same.


Log ID

BGP_MSG_MANDATORY_ATTRIBUTE

Message

BGP peer %s, source %s, hostname %s, instance %s received message %s with mandatory parameter %s missing

Description

Mandatory parameter for BGP message is not present.

Log Module

bgp

Log Group

peer

Severity

Info

Recommended Actions

Contact RtBrick customer support with the packet captured from the peer node.


Log ID

BGP_PEER_RESET_MSG_HDR_LEN_ERR

Message

BGP peer %s, source %s, hostname %s, instance %s is reset, reason: invalid message header length %s

Description

BGP peer is reset due to invalid header length.

Log Module

bgp

Log Group

peer

Severity

Info

Recommended Actions

Contact RtBrick customer support with the packet scenario captured from the peer node.


Log ID

BGP_PEER_RESET_INVALID_TYPE

Message

BGP peer %s, source %s, hostname %s, instance %s is reset, reason: invalid message type %s, length %s

Description

BGP peer is reset due to invalid message type.

Log Module

bgp

Log Group

peer

Severity

Info

Recommended Actions

BGP does not support the corresponding feature (message).


Log ID

BGP_PEER_RESET_INVALID_PARAMETER_TYPE

Message

BGP peer %s, source %s, hostname %s, instance %s is reset, reason: invalid optional parameter, message %u, parameter type %u

Description

BGP peer is reset due to invalid optional parameter type.

Log Module

bgp

Log Group

peer

Severity

Info

Recommended Actions

BGP does not support the corresponding feature (message).


Log ID

BGP_PEER_RESET_INVALID_CAP_LEN

Message

BGP peer %s, source %s hostname %s, instance %s is reset, reason: invalid capability type %s, capability length %s

Description

BGP peer is reset due to invalid capability length.

Log Module

bgp

Log Group

peer

Severity

Info

Recommended Actions

Contact customer support with the packet scenario captured from the peer node.


Log ID

BGP_DUPLICATE_TCP_ACCEPT

Message

BGP peer %s, source %s, hostname %s, instance %s duplicate accept socket is success.

Description

In this error scenario when one side BGP peer is up and on the other part TCP connection goes down and comes up again.

Log Module

bgp

Log Group

peer

Severity

Info

No action required

Contact Rtbrick customer support


Log ID

BGP_IFL_CHANGE

Message

Interface %s, instance %s received event %s

Description

Interface status has changed.

Log Module

bgp

Log Group

interface

Severity

Info

Recommended Actions

Verify the physical status of the interface.


Log ID

BGP_IFA_CHANGE

Message

Interface %s, instance %s received %s of address %s

Description

Event related to interface address.

Log Module

bgp

Log Group

interface

Severity

Info

Recommended Actions

Verify the physical status of the interface.


Log ID

BGP_INSTANCE_INACTIVE

Message

Instance %s is inactive, reason %s

Description

BGP instance became inactive.

Log Module

bgp

Log Group

instance

Severity

Info

Reco

No action required


Log ID

BGP_MSG_VALIDATION_FAIL

Message

BGP message received from peer %s, source %s, hostname %s, instance %s validation failed. Message type %s

Description

BGP Message validation failed.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Contact customer support with the packet captured from the peer node.


Log ID

BGP_MSG_DECODE_FAIL

Message

BGP message received from peer %s, source %s, hostname %s, instance %s decode failed. Message type %s

Description

BGP Message decoding has failed.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Contact customer support with the packet captured from the peer node.


Log ID

BGP_UPD_SET_ERR_INFO

Message

Update processing error. code %s , subcode %s

Description

BGP Update processed error code and subcodes.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Verify that the feature is supported.


Log ID

BGP_UPD_INVALID_IPV4_PREFIX

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Received invalid prefix %s/%s

Description

BGP Update message is received with an invalid prefix.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Capture the packet scenario and verify it.


Log ID

BGP_UPD_ATTR_REPEAT

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Attribute %s repeated

Description

BGP Update message is processed with a repeated attribute.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Verify the neighbor router configurations.


Log ID

BGP_UPD_ATTR_WELLKNOWN_TRANS

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Attribute %s does not have well known transitive flag set

Description

BGP Update process error. Attribute does not have a well known transitive flag set.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Verify the neighbor router configuration.


Log ID

BGP_UPD_ATTR_WK_TRANS_PARTIAL

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Well known transitive attribute %s has partial bit set

Description

BGP Update processing error: Well known transitive attribute has partial bit set

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Verify the neighbor router configurations.


Log ID

BGP_UPD_ATTR_INVALID_ASPATH_LEN

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Invalid AS path length %s

Description

BGP Update processed Invalid AS path length

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Verify that only 4 byte AS is enabled on peer BGP speakers. RBFS supports only 4 byte AS.


Log ID

BGP_UPD_ENFORCE_FIRST_AS

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: First AS %s is not peer AS %s, ignoring

Description

BGP Update processed: ā€˜First AS is not peer AS, so ignore the updateā€™ condition.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Disable 'enforce first AS' attribute, if this is required.


Log ID

BGP_UPD_INVALID_SEG_TYPE

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Invalid path segment type %s

Description

BGP Update processed ā€˜invalid segment typeā€™ condition.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Check whether that the feature is supported.


Log ID

BGP_UPD_INVALID_NH

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Invalid unicast ip address in nexthop %s

Description

BGP Update processing: Invalid unicast ip address in nexthop

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Contact Rtbrick customer support


Log ID

BGP_UPD_INVALID_IP6_PREFIX

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Invalid prefix %s/%s

Description

BGP Update processed an invalid IPv6 prefix which is received from the peer.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Capture and verify the packet scenario.


Log ID

BGP_UPD_RCVD_NON_NEGOTIATED_AF

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Received NLRI of non-negotiated address family %s, safi %s

Description

BGP Update processed a non-negotiated address family received from the peer (ā€˜Received NLRI of non-negotiated address familyā€™)

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Disable the address family on the peer node.


Log ID

BGP_UPD_INVALID_LEN

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Received invalid length %s

Description

BGP Update processed an invalid length which has been received from the peer.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Check whether the feature is supported.


Log ID

BGP_UPD_MALFORMED_PATH_ATTR

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Received malformed path attribute %s, length %s

Description

BGP Update processes a malformed path attribute which has been received.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Check whether the feature is supported.


Log ID

BGP_UPD_ATTR_EXT_LEN

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Invalid length bit set for attribute %s

Description

BGP Update processed an ā€˜Invalid length bit set for attributeā€™.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Check whether the feature is supported.


Log ID

BGP_UPD_ATTR_INVALID_ORIGIN

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Invalid origin attribute value %s

Description

BGP Update processed an invalid ā€˜originā€™ attribute value.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Verify the neighbor router configuration.


Log ID

BGP_UPD_ATTR_OPTIONAL_TRANS

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Attribute %s does not have optional transitive flag set

Description

BGP Update processed attributes which do not have an optional transitive flag set.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Verify the neighbor router configuration.


Log ID

BGP_UPD_OWN_ROUTER_ID

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Received own router id %s

Description

BGP Update processed its own router ID which has been received.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Verify whether the same router ID is configured on both of the BGP speakers.


Log ID

BGP_UPD_ATTR_OPTIONAL_NON_TRANS

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Attribute %s does not have optional non-transitive flag set

Description

BGP Update processed attribute that does not have an optional non-transitive flag set.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Verify the neighbor router configuration.


Log ID

BGP_UPD_INVALID_ATTR_EBGP

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Received invalid attribute %s from EBGP peer

Description

BGP Update processed an invalid attribute received from eBGP peer router.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Verify the neighbor router configuration.


Log ID

BGP_UPD_INVALID_SR_IDX_LEN

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Invalid SR index length %s

Description

BGP Update processed an invalid SR index length.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Verify the neighbor router configuration.


Log ID

BGP_UPD_INVALID_SRGB_LEN

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Invalid SRGB length %s

Description

BGP Update processed an invalid SRGB length.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

Verify the neighbor router configuration.


Log ID

BGP_UPD_PATH_ATTR_FAIL

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Processing path attribute failed

Description

BGP Update processed a failed path attribute.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

This can be a packet decoding problem. Send the captured packet to the Contact RtBrick customer support team for verification.


Log ID

BGP_UPD_MREACH_FAIL

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Processing MPREACH NLRI attribute failed

Description

BGP Update processed a failed MPREACH NLRI attribute.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

This can be a packet decoding problem. Send the captured packet to the Contact RtBrick customer support team for verification.


Log ID

BGP_UPD_INVALID_EXP_LEN

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Received invalid length %s . Expected %s

Description

BGP Update processed an invalid length which has been received.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

This can be a packet decoding problem. Send the captured packet to the Contact RtBrick customer support team for verification.


Log ID

BGP_UPD_NLRI_FAIL

Message

BGP update message processing, peer %s, source %s, hostname %s, instance %s: Processing NLRI attribute failed

Description

BGP Update processed a failed NLRI attribute.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

This can be a packet decoding problem. Send the captured packet scenario to the Contact RtBrick customer support team for verification.


Log ID

BGP_FSM_PEER_STATE_CHANGE

Message

Peer [%s] Src[%s] CurState[%s] Event[%s] NextState[%s]

Description

BGP Update processed a failed NLRI attribute.

Log Module

bgp

Log Group

message

Severity

Info

Recommended Actions

This can be a packet decoding problem. Send the captured packet scenario to the Contact RtBrick customer support team for verification.


4.3. HOSTCONFD Log Messages

Log ID

HOSTCONFD_BDS_GENERIC_FAIL

Message

Failed due to bds events- {table:%s}

Description

Failed due to a BDS event.

Log Module

hostconfd

Log Group

bds

Severity

INFO

Recommended Actions

Verify the table or object in the BDS commands.


Log ID

HOSTCONFD_TABLE_CONFIG_READ_FAIL

Message

Failed to read static hostconfd table configuration- {file:%s}

Description

Failed to read static hostconfd table configuration.

Log Module

hostconfd

Log Group

config

Severity

INFO

Recommended Actions

Verify the json format/table-name in the configuration file.


Log ID

HOSTCONFD_DYN_PLUGIN_REGN_FAIL

Message

Failed to register dynamic plugin- {table-type:%s}

Description

Failed to register dynamic plugin.

Log Module

hostconfd

Log Group

config

Severity

INFO

Recommended Actions

Verify the table definition.


Log ID

HOSTCONFD_HTTP_HEADER_FAIL

Message

Failed to create HTTP header to send to hostconfd {event:%s}

Description

Failed to create HTTP header to send to the hostconfd daemon.

Log Module

hostconfd

Log Group

functional

Severity

INFO

Recommended Actions

Verify the table definition.


Log ID

HOSTCONFD_HTTP_CONTENT_FAIL

Message

Failed to create HTTP content to send to hostconfd- {table-type:%s}

Description

Failed to create HTTP content to send to hostconfd daemon.

Log Module

hostconfd

Log Group

functional

Severity

INFO

Recommended Actions

Verify the table definition.


Log ID

HOSTCONFD_CONNECTION_DOWN

Message

HOSTCONFD connection is DOWN {event:%s}

Description

HOSTCONFD connection is down.

Log Module

hostconfd

Log Group

functional

Severity

INFO

Recommended Actions

Verify the hostconfd operational status.


Log ID

HOSTCONFD_ALERTING_CONFIG_ERROR

Message

HOSTCONFD alert config error {event:%s}

Description

Error generated by hostconfd on alerting about a configuration error.

Log Module

hostconfd

Log Group

functional

Severity

ERROR

Recommended Actions

Verify the hostconfd operational status.


Log ID

IPMI_CONFIG_TABLE_ERROR

Message

Failed to create IPMI config table %s

Description

Failed to create the IPMI configuration table.

Log Module

hostconfd

Log Group

functional

Severity

ERROR

Recommended Actions

Contact RtBrick customer support.


Log ID

WATCHDOG_CONFIG_TABLE_ERROR

Message

Failed to create Watchdog config table %s

Description

Failed to create the watchdog configuration table.

Log Module

hostconfd

Log Group

functional

Severity

ERROR

Recommended Actions

Contact RtBrick Customer Support.


4.4. Interfaces Log Messages

Log ID

IFM_OPER_IFP_ADMIN_UP

Message

Admin status of the physical interface %s is UP

Description

The interface configuration has been changed.

Log Module

ifm

Log Group

config

Severity

info

Recommended Actions

Verify the interface configurations on the physical interface.


Log ID

IFM_OPER_IFP_ADMIN_DOWN

Message

Admin status of the physical interface %s is DOWN

Description

The interface configuration has been changed.

Log Module

ifm

Log Group

config

Severity

info

Recommended Actions

Verify the interface configurations for the physical interface.


Log ID

IFM_OPER_IFP_LINK_UP

Message

Link status of the physical interface %s is UP

Description

Physical link is up on the interface.

Log Module

ifm

Log Group

interface-events

Severity

info

Recommended Actions

Check the physical connectivity for this particular port.


Log ID

IFM_OPER_IFP_LINK_DOWN

Message

Link status of the physical interface %s is DOWN

Description

Physical link is down on the interface.

Log Module

ifm

Log Group

interface-events

Severity

info

Recommended Actions

Check the physical connectivity for this particular port.


Log ID

IFM_OPER_IFP_OPERATIONAL_UP

Message

Operational status of the physical interface %s is UP

Description

Admin-status or operational status of an interface has gone up.

Log Module

ifm

Log Group

interface-events

Severity

info

Recommended Actions

Check the physical connectivity for this particular port or verify the interface configuration.


Log ID

IFM_OPER_IFP_OPERATIONAL_DOWN

Message

Operational status of the physical interface %s is DOWN

Description

Admin-status or operational status of an interface has gone down.

Log Module

ifm

Log Group

interface-events

Severity

info

Recommended Actions

Check the physical connection for this particular port or the interface configuration


Log ID

IFM_OPER_IFL_ADMIN_UP

Message

Admin status of the logical interface %s is UP

Description

Logical interface configuration has been changed.

Log Module

ifm

Log Group

config

Severity

info

Recommended Actions

Verify the interface configurations for this logical interface.


Log ID

IFM_OPER_IFL_ADMIN_DOWN

Message

Admin status of the logical interface %s is DOWN

Description

The logical interface configuration has been changed.

Log Module

ifm

Log Group

config

Severity

info

Recommended Actions

Check the interface configurations for this logical interface.


Log ID

IFM_OPER_IFL_LINK_UP

Message

Link status of the logical interface %s is UP

Description

Link is up on the logical interface.

Log Module

ifm

Log Group

interface-events

Severity

info

Recommended Actions

Check the connectivity for this particular logical interface.


Log ID

IFM_OPER_IFL_LINK_DOWN

Message

The link status of the logical interface %s is DOWN

Description

Link is down on the logical interface.

Log Module

ifm

Log Group

interface-events

Severity

info

Recommended Actions

Check the connectivity for this particular logical interface.


Log ID

IFM_OPER_IFL_OPERATIONAL_UP

Message

Operational status of the logical interface %s is UP

Description

Admin-status or operational status of a logical interface has gone up.

Log Module

ifm

Log Group

interface-events

Severity

info

Recommended Actions

Check the connectivity for this particular port or verify the logical interface configuration.


Log ID

IFM_OPER_IFL_OPERATIONAL_DOWN

Message

The operational status of the logical interface %s is DOWN

Description

Admin-status or operational status of a logical interface has gone down.

Log Module

ifm

Log Group

interface-events

Severity

info

Recommended Actions

Check the physical connectivity for this particular port or verify the logical interface configuration.


Log ID

IFM_OPER_IFL_IPV4_STATUS_UP

Message

IPv4 status of the logical interface %s is UP

Description

IPv4 service has been enabled on a logical interface.

Log Module

ifm

Log Group

config

Severity

info

Recommended Actions

Verify the IPv4 status for this logical interface.


Log ID

IFM_OPER_IFL_IPV4_STATUS_DOWN

Message

IPv4 status of the logical interface %s is DOWN

Description

Logical Interface configuration change triggered

Log Module

ifm

Log Group

config

Severity

info

Recommended Actions

Verify the IPv4 status for this logical interface.


Log ID

IFM_OPER_IFL_IPV6_STATUS_UP

Message

IPv6 status of the logical interface %s is UP

Description

IPv6 service is enabled on a logical interface.

Log Module

ifm

Log Group

config

Severity

info

Recommended Actions

Verify the IPv6 status for this logical interface.


Log ID

IFM_OPER_IFL_IPV6_STATUS_DOWN

Message

IPv6 status of the logical interface %s is DOWN

Description

IPv6 service is disabled on a logical interface.

Log Module

ifm

Log Group

config

Severity

info

Recommended Actions

Verify the IPv6 status for this logical interface.


Log ID

IFM_OPER_IFL_MPLS_STATUS_UP

Message

The MPLS status of the logical interface %s is UP

Description

MPLS service is enabled on a logical interface.

Log Module

ifm

Log Group

config

Severity

info

Recommended Actions

Verify the status of MPLS for this logical interface.


Log ID

IFM_OPER_IFL_MPLS_STATUS_DOWN

Message

MPLS status of the logical interface %s is DOWN

Description

MPLS service is disabled on a logical interface.

Log Module

ifm

Log Group

config

Severity

info

Recommended Actions

Verify the status of MPLS for this logical interface.


4.5. IPoE Log Messages

Log ID

SUBSCRIBER_CREATED

Message

Subscriber %s created for %s.%s:%s %s

Description

IPoE subscriber has been created.

Log Module

ipoe

Log Group

subscriber

Severity

info

Recommended Actions

No action required.


Log ID

SUBSCRIBER_DELETED

Message

Subscriber %s deleted with terminate code %s

Description

IPoE subscriber has been deleted.

Log Module

ipoe

Log Group

subscriber

Severity

info

Recommended Actions

No action required.


Log ID

DHCP_BINDING_CREATED

Message

Subscriber %s DHCP binding created

Description

Subscriber DHCP binding (an entry into the binding table) has been created.

Log Module

ipoe

Log Group

dhcp

Severity

info

Recommended Actions

No action required.


Log ID

DHCP_BINDING_DELETED

Message

Subscriber %s DHCP lease expired

Description

Subscriber DHCP binding has been deleted.

Log Module

ipoe

Log Group

dhcp

Severity

info

Recommended Actions

No action required.


Log ID

DHCP_BINDING_EXPIRED

Message

Subscriber %s DHCP binding lease timer expired

Description

Subscriber DHCP binding lease expired.

Log Module

ipoe

Log Group

dhcp

Severity

info

Recommended Actions

No action required.


Log ID

DHCPV6_BINDING_CREATED

Message

Subscriber %s DHCPv6 binding created

Description

Subscriber DHCPv6 binding has been created.

Log Module

ipoe

Log Group

dhcp

Severity

info

Recommended Actions

No action required.


Log ID

DHCPV6_BINDING_DELETED

Message

Subscriber %s DHCPv6 lease expired

Description

Subscriber DHCPv6 binding has been deleted.

Log Module

ipoe

Log Group

dhcp

Severity

info

Recommended Actions

No action required.


Log ID

DHCPV6_BINDING_EXPIRED

Message

Subscriber %s DHCPv6 binding lease timer expired

Description

The subscriber DHCPv6 binding lease expired.

Log Module

ipoe

Log Group

dhcp

Severity

info

Recommended Actions

No action required.


Log ID

SUBSCRIBER_DELETE_FAILED

Message

Subscriber %s deletion with terminate code %s failed

Description

IPoE subscriber deletion failure.

Log Module

ipoe

Log Group

subscriber

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSCRIBER_RD_FAILURE

Message

Subscriber %s from redundancy session %s failed due to %s

Description

IPoE redundancy subscriber failure.

Log Module

ipoe

Log Group

redundancy

Severity

debug

Recommended Actions

Contact RtBrick Customer Support.


Log ID

DHCP_RELAY_TRAP

Message

Trap rule %s %s for DHCP relay

Description

Event of DHCP relay trap installation.

Log Module

ipoe

Log Group

dhcp-relay

Severity

info

Recommended Actions

No action required.


Log ID

DHCP_RELAY_DECODE_ERROR

Message

DHCP relay packet decode error on interface %s, error code: %s subcode: %s

Description

Failure in decoding the received DHCP relay packet.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

No action required.


Log ID

DHCP_RELAY_SHM_DECODE

Message

DHCP relay packet shm validation error

Description

Failure in decoding the received DHCP relay packet.

Log Module

ipoe

Log Group

dhcp-relay

Severity

info

Recommended Actions

No action required.


Log ID

DHCP_RELAY_IP_UDP_DECODE

Message

DHCP relay packet IP header decode error on interface %s

Description

Failure in decoding the received DHCP relay packet.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

No action required.


Log ID

DHCP_RELAY_GATEWAY_IP

Message

DHCP relay gateway IP address not configured for interface %s

Description

DHCP relay configuration is not available.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

Configure the DHCP relay gateway IP address


Log ID

DHCP_RELAY_BINDING_ADD

Message

DHCP relay binding added for client %s on interface %s with gateway IP %s, client-ip %s and lease-time %s

Description

DHCP relay binding has been added.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

No action required.


Log ID

DHCP_RELAY_BINDING_DELETE

Message

DHCP relay binding deleted for client %s on interface %s

Description

DHCP relay binding is deleted.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

No action required.


Log ID

DHCP_RELAY_BINDING_MISSING

Message

DHCP relay binding missing for client %s, ignoring the packet from server

Description

DHCP relay binding is not available.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

Contact RtBrick Customer Support.


Log ID

DHCP_RELAY_CONFIG

Message

DHCP relay configuration missing for interface %s

Description

DHCP relay configuration is not available.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

Configure DHCP relay.


Log ID

DHCP_RELAY_SERVER_LIST_CONFIG

Message

DHCP relay server configuration missing on interface %s, dropping the DHCP packet %s

Description

DHCP server configuration is not available.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

Verify the DHCP server configuration.


Log ID

DHCP_RELAY_SERVER_CONFIG

Message

DHCP relay server IP configuration missing on interface %s for DHCP server %s

Description

DHCP server configuration is missing.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

Verify the DHCP relay configuration.


Log ID

DHCP_RELAY_SERVER_GET

Message

Unable to get DHCP relay server %s configuration on interface %s

Description

DHCP server configuration is missing.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

Configure DHCP server.


Log ID

DHCP_RELAY_PACKET_CLIENT_RCV

Message

DHCP %s received from client on interface %s with MAC %s

Description

DHCP relay packet received from the client.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

No action required.


Log ID

DHCP_RELAY_PACKET_SERVER_RCV

Message

DHCP %s received from server %s for client on interface %s with MAC %s

Description

DHCP relay packet received from the server

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

No action required.


Log ID

DHCP_RELAY_PACKET_CLIENT_SENT

Message

DHCP %s from server %s sent to client on interface %s with MAC %s

Description

DHCP relay packet sent to the client.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

No action required.


Log ID

DHCP_RELAY_PACKET_SERVER_SENT

Message

DHCP %s sent to server %s from client on interface %s with MAC %s

Description

DHCP relay packet sent to the server.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

No action required.


Log ID

DHCP_RELAY_PACKET_CLIENT_RCV_INVALID

Message

Invalid DHCP %s received from client on interface %s with MAC %s

Description

DHCP relay packet received from the client.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

No action required.


Log ID

DHCP_RELAY_PACKET_SERVER_RCV_INVALID

Message

Invalid DHCP %s received from server %s

Description

DHCP relay packet received from the server.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

No action required.


Log ID

DHCP_RELAY_PROXY_SERVER

Message

Selecting the server %s for the client on interface %s in proxy mode

Description

DHCP relay proxy server has been selected.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

No action required.


Log ID

DHCP_RELAY_PROXY_IGNORE_SERVER_PACKET

Message

Ignoring packet %s from server %s as the selected server is %s

Description

DHCP relay proxy packet ignored from the server.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

No action required.


Log ID

DHCP_RELAY_ENCODE_ERROR

Message

Error in encoding DHCP %s packet with client interface %s with MAC %s

Description

DHCP relay encode error.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

No action required.


Log ID

DHCP_RELAY_PROXY_NO_SERVER

Message

Server identifier missing in DHCP relay binding, dropping the DHCP %s packet from client interface %s with MAC %s

Description

No DHCP relay proxy server in binding.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

No action required.


Log ID

DHCP_RELAY_INVALID_DST_IP

Message

Invalid destination IP, dropping the DHCP %s packet from client interface %s with MAC %s

Description

DHCP relay proxy server in binding is not available.

Log Module

ipoe

Log Group

dhcp-relay

Severity

debug

Recommended Actions

No action required.


4.6. IS-IS Log Messages

Log ID

ISIS_INSTANCE_OVERLOAD

Message

ISIS instance %s, level %s, %s, overload state

Description

ISIS instance overload enters or exits.

Log Module

isis

Log Group

instance

Severity

Alert

Recommended Actions

No action required.


Log ID

ISIS_NEIGHBOR_DISCOVERY

Message

ISIS neighbor %s, discovered, interface %s, instance %s

Description

An ISIS neighbor is discovered.

Log Module

isis

Log Group

neighbor

Severity

Alert

Recommended Actions

No action required.


Log ID

ISIS_NEIGHBOR_STATE_CHANGE

Message

ISIS neighbor %s, interface %s, instance %s, changed state from %s, to %s, reason %s

Description

Changes in the ISIS neighbor FSM state.

Log Module

isis

Log Group

neighbor

Severity

Alert

Recommended Actions

No action required.


Log ID

ISIS_NEIGHBOR_DELETED

Message

ISIS neighbor %s, deleted, interface %s, instance %s

Description

An ISIS neighbor is deleted.

Log Module

isis

Log Group

neighbor

Severity

Info

Recommended Actions

No action is required.


Log ID

ISIS_IFL_CHANGE

Message

Interface %s, instance %s, received event %s, operational state %s, admin state %s, ipv4 status %s, ipv6 status %s

Description

Event of ISIS enabled interface status change.

Log Module

isis

Log Group

interface

Severity

Info

Recommended Actions

No action required.


Log ID

ISIS_IFA_CHANGE

Message

Interface %s, instance %s, received %s, for address %s

Description

An ISIS-enabled interface address event.

Log Module

isis

Log Group

interface

Severity

Info

Recommended Actions

No action required.


Log ID

ISIS_PDU_DECODE_FAIL

Message

ISIS PDU %s, decode failure received in interface %s, instance %s, level %s, reason %s

Description

ISIS PDU decoding failure.

Log Module

isis

Log Group

message

Severity

Alert

Recommended Actions

Capture and verify the ISIS packets. Contact RtBrick Customer Support.


Log ID

ISIS_AUTHENTICATION_FAIL

Message

Authentication failure for PDU %s, interface %s, instance %s, level %s

Description

ISIS Authentication failure.

Log Module

isis

Log Group

message

Severity

Alert

Recommended Actions

Verify if the authentication type, key, and password are matching at both ends.


Log ID

ISIS_LSP_FLOOD_FILTER_BLOCK

Message

LSP flooding is blocked for neighbor %s, in interface %s, instance %s, level %s, for lsp-id %s

Description

Event of ISIS flood filter block.

Log Module

isis

Log Group

message

Severity

Debug

Recommended Actions

No action required.


Log ID

ISIS_SPF_COMPUTATION

Message

Dijkstra’s Shortest Path First algorithm triggered in instance %s, level %s. Reason %s

Description

The Dijkstra’s Shortest Path First algorithm triggered

Log Module

isis

Log Group

spf

Severity

Info

Recommended Actions

No action required.


Log ID

ISIS_SPF_COMPUTATION_LSP

Message

Dijkstra’s Shortest Path First algorithm triggered in instance %s, level %s. Reason LSP %s, received

Description

The received LSP has triggered Dijkstra’s Shortest Path First algorithm.

Log Module

isis

Log Group

spf

Severity

Info

Recommended Actions

No action required.


Log ID

ISIS_ORIGINATE_SELF_LSP

Message

Self lsp is originate in instance %s, level %s, lsp id %s, sequence number %s

Description

LSP originated.

Log Module

isis

Log Group

lsp

Severity

Info

Recommended Actions

No action is required.


Log ID

ISIS_ORIGINATE_LSP_PURGE

Message

Purge lsp is originated in instance %s, level %s, lsp id %s, sequence number %s

Description

Purge LSP originated.

Log Module

isis

Log Group

lsp

Severity

Info

Recommended Actions

No action required.


Log ID

ISIS_IPV4_PREFIX_ADD

Message

Add %s, metric %s, source %s, preference %s, instance %s, topology %s

Description

IPv4 prefix is added.

Log Module

isis

Log Group

route

Severity

Debug

Recommended Actions

No action required.


Log ID

ISIS_IPV6_PREFIX_ADD

Message

Add %s, metric %s, source %s, preference %s, instance %s, topology %s

Description

IPv6 prefix is added.

Log Module

isis

Log Group

route

Severity

Debug

Recommended Actions

No action required.


Log ID

ISIS_MPLS_LABEL_ADD

Message

Add mpls label %s, source %s, preference %s, instance %s, topology %s

Description

MPLS prefix is added.

Log Module

isis

Log Group

route

Severity

Debug

Recommended Actions

No action required.


Log ID

ISIS_IPV4_PREFIX_DELETE

Message

Delete %s, instance %s, topology %s

Description

IPv4 prefix is deleted.

Log Module

isis

Log Group

route

Severity

Debug

Recommended Actions

No action required.


Log ID

ISIS_IPV6_PREFIX_DELETE

Message

Delete %s, instance %s, topology %s

Description

IPv6 prefix is deleted.

Log Module

isis

Log Group

route

Severity

Debug

Recommended Actions

No action required.


Log ID

ISIS_MPLS_LABEL_DELETE

Message

Delete mpls-label %s, instance %s, topology %s

Description

MPLS prefix deletion log

Log Module

isis

Log Group

route

Severity

Debug

Recommended Actions

Contact Rtbrick customer support


4.7. LDP Log Messages

Log ID

LDP_SESSION_CREATED

Message

LDP Session created, peer %s, instance %s

Description

LDP has formed a new session.

Log Module

ldp

Log Group

peer

Severity

debug

Recommended Actions

None Required.


Log ID

LDP_SESSION_DELETED

Message

LDP Session deleted, peer %s, instance %s

Description

LDP session is deleted.

Log Module

ldp

Log Group

peer

Severity

debug

Recommended Actions

Run the show ldp session detail command and check the ā€œReasonā€ attribute for information.


Log ID

LDP_TCP_STATE_CHNG

Message

LDP TCP state changed from "%s" to "%s" due to event "%s", peer %s, instance %s

Description

LDP TCP state has changed.

Log Module

ldp

Log Group

peer

Severity

debug

Recommended Actions

None Required.


Log ID

LDP_SESSION_STATE_CHNG

Message

LDP Session state changed from "%s" to "%s" due to event "%s", peer %s, instance %s

Description

LDP session state has changed.

Log Module

ldp

Log Group

peer

Severity

debug

Recommended Actions

None Required.


Log ID

LDP_MSG_ADDR_OUT

Message

LDP Address message sent for prefix %s, peer %s, instance %s

Description

LDP address message is sent.

Log Module

ldp

Log Group

peer

Severity

debug

Recommended Actions

None Required.


Log ID

LDP_MSG_ADDR_IN

Message

LDP Address message received for prefix %s, peer %s, instance %s

Description

LDP address message is received.

Log Module

ldp

Log Group

peer

Severity

debug

Recommended Actions

None Required.


Log ID

LDP_MSG_ADDR_WITHDRAW_OUT

Message

LDP Address withdraw message sent for prefix %s, peer %s, instance %s

Description

LDP address withdrawal message is sent.

Log Module

ldp

Log Group

peer

Severity

debug

Recommended Actions

None Required.


Log ID

LDP_MSG_ADDR_WITHDRAW_IN

Message

LDP Address withdraw message received for prefix %s, peer %s, instance %s

Description

LDP address withdrawal message is received.

Log Module

ldp

Log Group

peer

Severity

debug

Recommended Actions

None Required.


Log ID

LDP_MSG_LABEL_MAP_OUT

Message

LDP label mapping message sent for prefix %s with label-%s, peer %s, instance %s

Description

LDP mapping message is sent.

Log Module

ldp

Log Group

peer

Severity

debug

Recommended Actions

None Required.


Log ID

LDP_MSG_LABEL_MAP_IN

Message

LDP label mapping message received for prefix %s with label-%s, peer %s, instance %s

Description

LDP mapping is received.

Log Module

ldp

Log Group

peer

Severity

debug

Recommended Actions

None Required.


Log ID

LDP_MSG_LABEL_WITHDRAW_OUT

Message

LDP label withdraw message sent for prefix %s with label-%s, peer %s, instance %s

Description

LDP mapping withdrawal message is sent.

Log Module

ldp

Log Group

peer

Severity

debug

Recommended Actions

None Required.


Log ID

LDP_MSG_LABEL_WITHDRAW_IN

Message

LDP label withdraw message received for prefix %s with label-%s, peer %s, instance %s

Description

LDP mapping withdrawal message is received.

Log Module

ldp

Log Group

peer

Severity

debug

Recommended Actions

None Required.


Log ID

LDP_MSG_LABEL_REQ_REPLY_OUT

Message

LDP label request message reply for prefix %s sent with label-%s, peer %s, instance %s

Description

LDP request reply message is sent.

Log Module

ldp

Log Group

peer

Severity

debug

Recommended Actions

None Required.


Log ID

LDP_MSG_LABEL_REQ_IN

Message

LDP label request message received, prefix %s, peer %s, instance %s

Description

LDP request message is received.

Log Module

ldp

Log Group

peer

Severity

debug

Recommended Actions

None Required.


Log ID

LDP_MSG_LABEL_REL_OUT

Message

LDP label release message sent, prefix %s, label-%s, peer %s, instance %s

Description

LDP release message is sent.

Log Module

ldp

Log Group

peer

Severity

debug

Recommended Actions

None Required.


Log ID

LDP_MSG_LABEL_REL_IN

Message

LDP label release message received, prefix %s, label-%s, peer %s, instance %s

Description

LDP release message is received.

Log Module

ldp

Log Group

peer

Severity

debug

Recommended Actions

None Required.


Log ID

LDP_ADD_TO_FIB

Message

LDP route added to FIB, prefix %s, label-%s, instance %s

Description

LDP has been added to FIB.

Log Module

ldp

Log Group

peer

Severity

debug

Recommended Actions

None Required.


Log ID

LDP_DEL_FROM_FIB

Message

LDP route deleted from FIB, prefix %s, label-%s, instance %s

Description

LDP is deleted from FIB.

Log Module

ldp

Log Group

peer

Severity

debug

Recommended Actions

None Required.


Log ID

LDP_NBR_CREATED

Message

LDP Neighbour created, peer %s, interface %s, instance %s

Description

LDP has formed a new neighbor

Log Module

ldp

Log Group

adjacency

Severity

INFO

Recommended Actions

None Required.


Log ID

LDP_NBR_DELETED

Message

LDP Neighbour deleted, peer %s, interface %s, instance %s

Description

LDP neighbor is removed.

Log Module

ldp

Log Group

adjacency

Severity

INFO

Recommended Actions

Configure the neighbor router again for establishing neighborship and sending hello packets.


Log ID

LDP_NOTIFICATION_IN

Message

LDP Notification received, peer %s, instance %s, reason %s

Description

LDP has received notification messages. There are basically two types of notification, one is advisory and the other is fatal. In case a fatal notification is received, the session will be reset.

Log Module

ldp

Log Group

notification

Severity

INFO

Recommended Actions

If the peer is reset, run the show ldp session detail command and check the ā€œReasonā€ attribute.


Log ID

LDP_NOTIFICATION_OUT

Message

LDP Notification sent, peer %s, instance %s, reason %s

Description

LDP has sent out notification messages to the peer.

Log Module

ldp

Log Group

notification

Severity

INFO

Recommended Actions

If peer is reset, run the show ldp session detail command and check the ā€œReasonā€ attribute.


Log ID

LDP_SESSION_STATE

Message

LDP session state changed to %s, peer %s, instance %s

Description

LDP session state has changed

Log Module

ldp

Log Group

peer

Severity

INFO

Recommended Actions

None Required.


4.8. License Log Messages

Log ID

LICENSE_INTERNAL_NULL_STRING

Message

NULL license string passed to license verification API

Description

Invalid parameters passed for the license verification API.

Log Module

license

Log Group

internal

Severity

ERROR

Recommended Actions

Internal error. Contact RtBrick customer support


Log ID

LICENSE_INTERNAL_INVALID_STRING

Message

Invalid license string passed to license verification API

Description

Invalid parameters passed for the license verification API.

Log Module

license

Log Group

internal

Severity

INFO

Recommended Actions

Internal error. Contact RtBrick customer support


Log ID

LICENSE_FILE_READ_FAILURE

Message

Unable to read license string from license file %s

Description

License file read failure.

Log Module

license

Log Group

internal

Severity

ERROR

Recommended Actions

Internal error. Contact RtBrick customer support.


Log ID

LICENSE_FILE_OPEN_FAILURE

Message

Unable to open from license file %s

Description

Unable to open the license file.

Log Module

license

Log Group

internal

Severity

ERROR

Recommended Actions

Internal error. Contact RtBrick customer support


Log ID

LICENSE_STRING_ALLOCATION_FAILURE

Message

Unable to allocate %s bytes for license string

Description

Memory allocation failure

Log Module

license

Log Group

internal

Severity

ERROR

Recommended Actions

Contact RtBrick customer support


Log ID

LICENSE_INVALID_STRING_IN_FILE

Message

Invalid license string present in license file %s

Description

Invalid license installed

Log Module

license

Log Group

internal

Severity

ERROR

Recommended Actions

Contact RtBrick customer support


Log ID

LICENSE_INVALID_CONTENT

Message

Invalid license content in file %s

Description

Invalid license content

Log Module

license

Log Group

internal

Severity

ERROR

Recommended Actions

Contact RtBrick customer support


Log ID

LICENSE_DIRECTORY_OPEN_FAILURE

Message

Unable to open license directory

Description

License directory open failure.

Log Module

license

Log Group

internal

Severity

ERROR

Recommended Actions

Contact Rtbrick customer support


Log ID

LICENSE_START_DATE_MISSING

Message

License doesn’t have a start date

Description

License file did not have a start date.

Log Module

license

Log Group

internal

Severity

ERROR

Recommended Actions

Start date is missing in the license file. Obtain a valid license.


Log ID

LICENSE_END_DATE_MISSING

Message

License doesn’t have an end date

Description

License file did not have an end date.

Log Module

license

Log Group

internal

Severity

ERROR

Recommended Actions

End date is missing in the license file. Obtain a valid license.


Log ID

LICENSE_DIRECTORY_CLOSE_FAILURE

Message

Unable to close the license directory.

Description

Unable to close the license directory.

Log Module

license

Log Group

internal

Severity

ERROR

Recommended Actions

Contact RtBrick customer support


Log ID

LICENSE_HOSTCONFD_CONNECTION_DOWN

Message

License installation delayed due to hostconfd connection down

Description

License installation has been delayed due to the hostconfd connectivity issue.

Log Module

license

Log Group

internal

Severity

INFO

Recommended Actions

Contact RtBrick customer support


Log ID

LICENSE_INIT_FAILED

Message

License initialization failed.

Description

License initialization has failed.

Log Module

license

Log Group

internal

Severity

ERROR

Recommended Actions

Contact RtBrick customer support


Log ID

LICENSE_TABLE_NOT_PRESENT

Message

License table (global.rtbrick.license) is not present

Description

The license table global.rtbrick.license is not present.

Log Module

license

Log Group

internal

Severity

ERROR

Recommended Actions

Contact RtBrick customer support


Log ID

LICENSE_SECONDARY_VALIDATION_COMPROMISED

Message

License table (global.rtbrick.license) is not present

Description

The license table global.rtbrick.license is not present.

Log Module

license

Log Group

internal

Severity

ERROR

Recommended Actions

Contact RtBrick customer support


Log ID

LICENSE_STATS_TABLE_NOT_PRESENT

Message

License stats table (local.rtbrick.license.stats) is not present

Description

The license stats table local.rtbrick.license.stats is not present.

Log Module

license

Log Group

internal

Severity

ERROR

Recommended Actions

Contact Rtbrick customer support


Log ID

LICENSE_CONFIG_TABLE_CREATE_FAILED

Message

License config table (local.rtbrick.license.config) is not present

Description

License stats table local.rtbrick.license.config is not present.

Log Module

license

Log Group

internal

Severity

ERROR

Recommended Actions

Contact RtBrick customer support


Log ID

LICENSE_TRAIL_PERIOD_EXPIRY

Message

The software trial period has ended, install a license.

Description

The software trial period has ended.

Log Module

license

Log Group

operational

Severity

CRITICAL

Recommended Actions

Install a new license.


Log ID

LICENSE_EXPIRY_WARNING

Message

The current license will expire by %s, install a new license

Description

The current license is about to expire.

Log Module

license

Log Group

operational

Severity

WARNING

Recommended Actions

Install a new license.


Log ID

LICENSE_EXPIRY_ERROR

Message

The current license will expire by %s, please install a new license

Description

The current license is about to expire.

Log Module

license

Log Group

operational

Severity

ERROR

Recommended Actions

Install a new license.


Log ID

LICENSE_EXPIRY_CRITICAL

Message

The current license has expired, install a new license

Description

The current license has expired.

Log Module

license

Log Group

operational

Severity

CRITICAL

Recommended Actions

Install a new license.


4.9. Policy Log Messages

Log ID

POLICY_LOG_CODE_GEN_STATUS_FAILED

Message

Policy [%s]: Code Generation Error Reason [%s]

Description

Policy code generation has failed.

Log Module

policy

Log Group

Generation

Severity

ERROR

Recommended Actions

Delete the old policy library and if the problem still persists, contact RtBrick customer support.


Log ID

POLICY_LOG_CODE_GEN_STATUS_SUCCESS

Message

Policy [%s]: Code Generation Status: [%s]

Description

Policy code generation status

Log Module

policy

Log Group

Generation

Severity

INFO

Recommended Actions

No action required.


4.10. PPPoE Log Messages

Log ID

PPPOE_CONFIG_NOT_FOUND

Message

No matching configuration found for PPPoE discovery on interface %s, MAC %s, S-Tag %s, C-Tag %s

Description

Received PPPoE discovery packet without a matching configuration.

Log Module

pppoe

Log Group

config

Severity

info

Recommended Actions

Verify the access interface configuration.


Log ID

PPPOE_SUBSCRIBER_ID_GET_FAILED

Message

PPPoE session subscriber-id get failed on interface %s, MAC %s, PPPoE session-id %s, S-Tag %s, C-Tag %s

Description

Failure in assigning the subscriber identifier to the PPPoE session.

Log Module

pppoe

Log Group

subscriber

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_FSM_STATE_CHANGE

Message

%s session for subscriber-id %s changed state from %s to %s for input %s, action %s

Description

PPP FSM state has changed.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_PPP_SEND_ERROR

Message

Failed to encode and send PPP packet on interface %s, subscriber-id %s

Description

Failed to encode and send PPP packet.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_LCP_WRONG_ECHO_MAGIC

Message

LCP ECHO received on interface %s, subscriber-id %s with wrong magic number %s, expected %s

Description

PPP LCP echo request/reply received with a wrong magic number.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

Restart the subscriber.


Log ID

PPPOE_LCP_WRONG_ECHO_REPLY_ID

Message

LCP ECHO reply received on interface %s, subscriber-id %s with wrong identifier %s, expected %s

Description

PPP LCP echo reply received with a wrong identifier.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

Restart the subscriber.


Log ID

PPPOE_LCP_RCV_PROTO_REJECT

Message

PPP protocol reject received on interface %s, subscriber-id %s protocol %s

Description

PPP protocol 'reject' has been received.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_PROTO_DECODE_ERROR

Message

%s packet decode error on interface %s, MAC %s, session-id %s, subscriber-id %s with remaining packet length %s

Description

Failed to decode the received PPPoE PPP packet.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_LCP_RCV_WRONG_ID

Message

LCP %s received on interface %s, subscriber-id %s with identifier %s, expected %s

Description

Received PPP LCP response with a wrong identifier.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_LCP_RCV_MRU

Message

LCP %s received on interface %s, subscriber-id %s with received MRU %s, local MRU %s

Description

PPP LCP response with wrong or suggested MRU received.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_LCP_RCV_MAGIC

Message

LCP %s received on interface %s, subscriber-id %s with received magic %s, local magic %s

Description

PPP LCP response with wrong or suggested magic number received.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

Restart the subscriber.


Log ID

PPPOE_LCP_RCV_AUTH

Message

LCP %s received on interface %s, subscriber-id %s with wrong authentication protocol %s, expected %s

Description

PPP LCP response with wrong or suggested auth protocol received.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

Restart the subscriber.


Log ID

PPPOE_PPP_RCV_ERROR

Message

%s receive error %s on interface %s, MAC %s, session-id %s, subscriber-id %s

Description

Error in receiving PPP.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

Restart the subscriber.


Log ID

PPPOE_PROTO_MAX_RETRANSMISSION

Message

Maximum %s retransmission count on interface %s, subscriber-id %s, retransmit count %s

Description

PPPoE PPP retransmission has exceeded.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

Restart the subscriber.


Log ID

PPPOE_AUTH_REJECT

Message

Authentication rejected on interface %s, subscriber-id %s with user %s

Description

PPPoE PPP authentication has been rejected.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

Verify the subscriber username and password.


Log ID

PPPOE_NO_SOURCE_IP

Message

%s source IP address not found on interface %s, subscriber-id %s

Description

Source IP address is missing to set up PPPoE PPP session.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

Configure source IP for the source IFL.


Log ID

PPPOE_PROTO_RECEIVE_ERROR

Message

Protocol receive error %s on interface %s, MAC %s, session-id %s, subscriber-id %s

Description

Error in receiving PPPoE PPP protocol.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_PROTO_RCV_ID_WARNING

Message

%s %s received on interface %s, subscriber-id %s with wrong identifier %s, expected %s

Description

PPP NCP response received with a wrong identifier.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_IPCP_RECEIVE_WRONG_IP

Message

IPCP %s received on interface %s, subscriber-id %s with address %s, expected %s

Description

PPP IPCP reply received with wrong address.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_IPV6_CHECKSUM_ERROR

Message

PPPoE IPv6 packet decode checksum error on interface %s, subscriber-id %s

Description

Failed to decode the received PPPoE PPP packet with a wrong IPv6 checksum (UDP or ICMPv6) value.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_DECODE_ERROR

Message

Error decoding received PPPoE packet on interface %s, MAC %s

Description

Failed to decode the PPPoE ether type or VLAN.

Log Module

pppoe

Log Group

pppoe

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_DECODE_ERROR_WITH_VLAN

Message

Error decoding received PPPoE packet on interface %s, MAC %s, S-Tag %s, C-Tag %s

Description

Failed to decode the PPPoE discovery packet.

Log Module

pppoe

Log Group

pppoe

Severity

info

Recommended Actions

Verify the options and VLAN configured in the subscriber.


Log ID

PPPOE_UNKNOWN_DISCOVERY_PACKET

Message

Received unknown PPPoE discovery packet on interface %s, MAC %s, S-Tag %s, C-Tag %s, session-id %s

Description

Received unknown PPPoE discovery packet.

Log Module

pppoe

Log Group

pppoe

Severity

info

Recommended Actions

Check the options and VLAN configured in the subscriber.


Log ID

PPPOE_SESSION_CREATE

Message

PPPoE session created on interface %s, S-Tag %s, C-Tag %s, MAC %s, PPPoE session-id %s, subscriber-id %s, state %s access-profile %s

Description

Creation of the PPPoE/PPP session after PADS is sent.

Log Module

pppoe

Log Group

pppoe

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_SESSION_LIMIT_REACHED

Message

PPPoE session limit reached on interface %s, MAC %s, S-Tag %s, C-Tag %s

Description

PPPoE session limit reached.

Log Module

pppoe

Log Group

pppoe

Severity

notice

Recommended Actions

New sessions can be created only after removing existing sessions. Clear existing subscribers.


Log ID

PPPOE_PACKET_ENCODE_ERROR

Message

Could not encode PPPoE %s on interface %s, MAC %s, PPPoE session-id %s, S-Tag %s, C-Tag %s

Description

PPPoE discovery encode error.

Log Module

pppoe

Log Group

pppoe

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_BAD_PACKET_INTERFACE_GET_FAILED

Message

Interface get failed for PPPoE %s packet on interface %s, MAC %s

Description

PPPoE discovery packet has been received on the invalid interface.

Log Module

pppoe

Log Group

pppoe

Severity

info

Recommended Actions

Check the access interface configuration.


Log ID

PPPOE_BAD_PACKET_INTERFACE_DOWN

Message

Received PPPoE %s packet on operationaly down interface %s, MAC %s

Description

PPPoE discovery packet has been received on the interface that is down.

Log Module

pppoe

Log Group

pppoe

Severity

info

Recommended Actions

Verify the access interface state.


Log ID

PPPOE_BAD_PACKET_WRONG_MAC

Message

Received bad PPPoE %s packet with wrong MAC on interface %s, MAC %s

Description

Invalid PPPoE discovery packet has been received with the wrong MAC address.

Log Module

pppoe

Log Group

pppoe

Severity

info

Recommended Actions

Restart the subscriber.


Log ID

PPPOE_BAD_PACKET_NO_AC_COOKIE

Message

Received bad PPPoE %s packet on interface %s, MAC %s with no ac cookie

Description

Invalid PPPoE discovery packet has been received with no ac_cookie.

Log Module

pppoe

Log Group

pppoe

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_BAD_PACKET_WRONG_AC_COOKIE

Message

Received bad PPPoE %s packet on interface %s, MAC %s with wrong ac cookie

Description

Invalid PPPoE discovery packet has been received with the wrong ac_cookie.

Log Module

pppoe

Log Group

pppoe

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_BAD_PACKET_UNKNOWN_ETHER_TYPE

Message

Received bad PPPoE packet on interface %s, MAC %s with unknown ether type %s

Description

Received PPPoE discovery packet with an invalid ether type.

Log Module

pppoe

Log Group

pppoe

Severity

info

Recommended Actions

Verify the subscriber configuration.


Log ID

PPPOE_SESSION_DELETE

Message

PPPoE session delete on interface %s, MAC %s, PPPoE session-id %s, S-Tag %s, C-Tag %s

Description

PPPoE session deletion occurred.

Log Module

pppoe

Log Group

pppoe

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_DHCPV6_DECODE_ERROR

Message

PPPoE DHCPv6 packet decode error on interface %s, subscriber-id %s error code: %s subcode: %s

Description

Failed to decode the received PPPoE DHCPv6 packet.

Log Module

pppoe

Log Group

dhcpv6

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_DHCPV6_VALIDATION_ERROR

Message

PPPoE DHCPv6 packet validation error on interface %s, subscriber-id %s

Description

Failed to validate the received PPPoE DHCPv6 packet.

Log Module

pppoe

Log Group

dhcpv6

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_VENDOR_REQUEST_FAILED

Message

LCP vendor request failed for subscriber-id %s, %s

Description

PPPoE PPP LCP vendor request failure.

Log Module

pppoe

Log Group

ppp

Severity

info

Recommended Actions

No action required.


Log ID

PPPOE_RECEIVE_ERROR

Message

PPPOE packet receive with %s

Description

Generic PPPoE receive error.

Log Module

pppoe

Log Group

general

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_CONFIG_FOUND

Message

PPPoE %s received on interface %s, MAC %s, S-Tag %s, C-Tag %s, found access-profile %s

Description

Received PPPoE discovery packet with a matching configuration.

Log Module

pppoe

Log Group

config

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_SUBSCRIBER_IN

Message

Result from subscriberd for subscriber-id %s with action %s

Description

Action received from subscriberd.

Log Module

pppoe

Log Group

subscriber

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_LCP_SESSION_EVENT

Message

LCP session %s on interface %s, MAC %s, PPPoE session-id %s, subscriber-id %s

Description

PPP LCP protocol events.

Log Module

pppoe

Log Group

ppp

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_IPCP_SESSION_EVENT

Message

IPCP session %s on interface %s, MAC %s, PPPoE session-id %s, subscriber-id %s

Description

PPP IPCP protocol events.

Log Module

pppoe

Log Group

ppp

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_IP6CP_SESSION_EVENT

Message

IP6CP session %s on interface %s, MAC %s, PPPoE session-id %s, subscriber-id %s

Description

PPP IP6CP protocol events

Log Module

pppoe

Log Group

ppp

Severity

debug

Recommended Actions

Contact Rtbrick customer support


Log ID

PPPOE_LCP_PRINT_MY_OPTIONS

Message

PPP LCP options for subscriber-id %s, MRU %s, magic %s, authentication %s, identifier %s, retransmission-count %s, retransmisson-interval %s

Description

Local PPP LCP options.

Log Module

pppoe

Log Group

ppp

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_LCP_START_ECHO

Message

LCP start echo on interface %s, subscriber-id %s

Description

Started sending the PPP LCP echo request interval.

Log Module

pppoe

Log Group

ppp

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_LCP_RCV_CONFX

Message

PPP LCP %s received on interface %s, subscriber-id %s, MRU %s, magic %s, authentication %s

Description

PPP LCP request/response has been received.

Log Module

pppoe

Log Group

ppp

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_LCP_NEGOTIATION

Message

LCP %s on interface %s for subscriber-id %s

Description

PPP LCP negotiation occurred.

Log Module

pppoe

Log Group

ppp

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_LCP_SETUP

Message

LCP setup %s on interface %s for subscriber-id %s

Description

PPPoE PPP sessions setup.

Log Module

pppoe

Log Group

ppp

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_AUTH_RCV_REQ

Message

%s receive request packet on interface %s, subscriber-id %s, user %s

Description

PPPoE PPP authentication request has been received.

Log Module

pppoe

Log Group

ppp

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_LCP_UPPPER_LAYER_TEARDOWN

Message

LCP teardown by upper layer on interface %s for subscriber-id %s

Description

PPPoE PPP session teardown/termination.

Log Module

pppoe

Log Group

ppp

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_NCP_SESSION_DETAIL

Message

%s session on interface %s, subscriber-id %s, retransmission-interval %s, local ipv4 address %s

Description

PPPoE PPP NCP local session information.

Log Module

pppoe

Log Group

ppp

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_IPCP_CONFREQ_PEER

Message

IPCP CONFREQ peer info for subscriber-id %s on interface %s, peer ipv4-address %s, primary dns %s, secondary dns %s

Description

PPPoE PPP IPCP session information.

Log Module

pppoe

Log Group

ppp

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_IPCP_CONFREQ

Message

IPCP CONFREQ received for subscriber-id %s on interface %s, peer ipv4-address %s, primary dns %s, secondary dns %s

Description

PPPoE PPP IPCP has been received.

Log Module

pppoe

Log Group

ppp

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_DISCOVERY_PACKET_RECEIVE

Message

Received PPPoE %s packet on interface %s, MAC %s, session-id %s

Description

Received PPPoE discovery packet.

Log Module

pppoe

Log Group

pppoe

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_DISCOVERY_PACKET_SEND

Message

Sending PPPoE %s packet on interface %s, MAC %s, session-id %s

Description

Sent PPPoE discovery packet.

Log Module

pppoe

Log Group

pppoe

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_DHCPV6_LEASE

Message

PPPoE DHCPv6 IA_PD %s for subscriber-id %s, MAC %s, S-Tag %s, C-Tag %s

Description

PPPoE DHCPv6 IA_PD lease.

Log Module

pppoe

Log Group

dhcpv6

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_FSM_ACTION_FAILED

Message

%s session for subscriber-id %s, MAC %s, S-Tag %s, C-Tag %s action %s failed

Description

PPP FSM action failure.

Log Module

pppoe

Log Group

ppp

Severity

debug

Recommended Actions

No action required.


Log ID

PPPOE_PADT_RECEIVED

Message

PPPoE PADT received for subscriber-id %s on interface %s, MAC %s, S-Tag %s, C-Tag %s

Description

Received PPPoE padt packet.

Log Module

pppoe

Log Group

config

Severity

debug

Recommended Actions

No action required.


4.11. Subscriber Management Log Messages

Log ID

SUBSMGMT_AAA_PROFILE_NOT_FOUND

Message

AAA configuration profile %s not found for subscriber %s

Description

This event log is generated if the authentication, authorization, and accounting (AAA) configuration profile for the subscriber has not been found.

Log Module

subsMgmt

Log Group

config

Severity

warning

Recommended Actions

Verify the AAA profile configuration.


Log ID

SUBSMGMT_AAA_PROFILE_INVALID_ORDER

Message

AAA configuration profile %s invalid configuration order for subscriber %s

Description

AAA configuration profile is not in valid order.

Log Module

subsMgmt

Log Group

config

Severity

info

Recommended Actions

Verify the authentication and accounting order in the AAA profile configuration.


Log ID

SUBSMGMT_RADIUS_PROFILE_MISSING_IN_AAA

Message

RADIUS profile missing in AAA profile %s for subscriber %s

Description

Missing RADIUS profile in AAA profile.

Log Module

subsMgmt

Log Group

config

Severity

warning

Recommended Actions

Verify the RADIUS profile in the AAA profile configuration.


Log ID

SUBSMGMT_MISSING_AAA_CONFIG

Message

missing AAA %s for subscriber %s

Description

Subscriber AAA configuration warning.

Log Module

subsMgmt

Log Group

config

Severity

warning

Recommended Actions

Configure missing AAA configuration.


Log ID

SUBSMGMT_AUTHENTICATION_FAILED

Message

Authentication failed for subscriber %s due to %s

Description

Subscriber authentication failure.

Log Module

subsMgmt

Log Group

subscriber

Severity

info

Recommended Actions

Check the local/radius authentication configuration.


Log ID

SUBSMGMT_ACCT_SESSION_ID_NOT_FOUND

Message

No subscriber with Acct-Session-ID %s found

Description

a CoA request with an unknown Acct-Session-ID has been received.

Log Module

subsMgmt

Log Group

subscriber

Severity

info

Recommended Actions

No action required.


Log ID

SUBSMGMT_SUBSCRIBER_ADD

Message

Subscriber %s added

Description

New subscriber has been added.

Log Module

subsMgmt

Log Group

subscriber

Severity

info

Recommended Actions

No action required.


Log ID

SUBSMGMT_SUBSCRIBER_DEL

Message

Subscriber %s deleted

Description

Subscriber has been deleted.

Log Module

subsMgmt

Log Group

subscriber

Severity

info

Recommended Actions

No action required.


Log ID

SUBSMGMT_SUBSCRIBER_NOT_FOUND

Message

Subscriber %s not found

Description

Subscriber is not found.

Log Module

subsMgmt

Log Group

subscriber

Severity

info

Recommended Actions

No action required.


Log ID

SUBSMGMT_TRAP_ADD

Message

Failed to add I/O trap %s

Description

Failed to add input/output trap entry.

Log Module

subsMgmt

Log Group

subscriber

Severity

notice

Recommended Actions

Check the FIB and RIB logs.


Log ID

SUBSMGMT_TRAP_DEL

Message

Failed to delete I/O trap %s

Description

Failed to delete input/output trap entry.

Log Module

subsMgmt

Log Group

subscriber

Severity

info

Recommended Actions

Check the FIB and RIB logs.


Log ID

SUBSMGMT_QOS_SHAPER

Message

Invalid dynamic shaper definition %s for subscriber %s

Description

Invalid subscriber QoS shaper definition has been received.

Log Module

subsMgmt

Log Group

subscriber

Severity

notice

Recommended Actions

No action required.


Log ID

SUBSMGMT_QOS_POLICER

Message

Invalid dynamic policer definition %s for subscriber %s

Description

Invalid subscriber QoS policer definition has been received.

Log Module

subsMgmt

Log Group

subscriber

Severity

notice

Recommended Actions

No action required.


Log ID

SUBSMGMT_IPV4_DUPLICATE_ADDRESS_DETECTED

Message

Duplicate IPv4 address %s detected for subscriber %s

Description

Duplicate IPv4 address has been detected.

Log Module

subsMgmt

Log Group

subscriber

Severity

notice

Recommended Actions

Verify the IPv4 address allocation configuration.


Log ID

SUBSMGMT_IPV6_DUPLICATE_ADDRESS_DETECTED

Message

Duplicate IPv6 prefix %s detected for subscriber %s

Description

Duplicate IPv6 address has been detected.

Log Module

subsMgmt

Log Group

subscriber

Severity

notice

Recommended Actions

Verify the IPv6 address allocation configuration.


Log ID

SUBSMGMT_INSTANCE_NOT_FOUND

Message

Instance %s not found for subscriber %s

Description

Instance is not found.

Log Module

subsMgmt

Log Group

subscriber

Severity

notice

Recommended Actions

Configure the subscriber instance.


Log ID

SUBSMGMT_FSM_EVENT

Message

Subscriber %s FSM State change, from %s, event %s, to %s

Description

Subscriber FSM state transition.

Log Module

subsMgmt

Log Group

subscriberfsm

Severity

info

Recommended Actions

No action required.


Log ID

SUBSMGMT_POOL_IPV4_EXHAUSTED

Message

IPv4 pool %s exhausted for subscriber %s

Description

Local IPv4 address pool has exhausted.

Log Module

subsMgmt

Log Group

pool

Severity

notice

Recommended Actions

Free up IPv4 addresses.


Log ID

SUBSMGMT_POOL_IPV6_EXHAUSTED

Message

IPv6 pool %s exhausted for subscriber %s

Description

Local IPv6 address pool has exhausted.

Log Module

subsMgmt

Log Group

pool

Severity

notice

Recommended Actions

Free up IPv6 addresses.


Log ID

SUBSMGMT_QOS_QUEUE

Message

Invalid dynamic queue definition %s for subscriber %s

Description

Invalid subscriber QoS queue definition has been received.

Log Module

subsMgmt

Log Group

subscriber

Severity

notice

Recommended Actions

No action required.


Log ID

SUBSMGMT_FUNCTION_INVOCATION

Message

Subscriber Daemon %s Function invoked

Description

Function calls in SubscriberD.

Log Module

subsMgmt

Log Group

general

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_SERVICE_PROFILE_GET_FAILED

Message

Failed to get service profile %s for subscriber %s

Description

Failed to get service configuration profile.

Log Module

subsMgmt

Log Group

config

Severity

debug

Recommended Actions

Reconfigure the service profile.


Log ID

SUBSMGMT_INTERNAL_AUTHENTICATION

Message

Failed to %s during authentication for subscriber %s

Description

General subscriber authentication warning.

Log Module

subsMgmt

Log Group

subscriber

Severity

warning

Recommended Actions

No action required.


Log ID

SUBSMGMT_INTERNAL_ACCOUNTING

Message

Failed to %s during accounting for subscriber %s

Description

General subscriber accounting warning.

Log Module

subsMgmt

Log Group

subscriber

Severity

warning

Recommended Actions

No action required.


Log ID

SUBSMGMT_PPPOE_RESULT

Message

Failed to %s from PPPoE for subscriber %s

Description

General subscriber PPPoE related errors.

Log Module

subsMgmt

Log Group

subscriber

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_L2TP_RESULT

Message

Failed to extract the L2TP result

Description

General subscriber L2TP related errors.

Log Module

subsMgmt

Log Group

subscriber

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_ACCOUNTING_STOP_PROGRESS

Message

Accounting STOP in progress for subscriber %s

Description

Subscriber waits for the final counter update.

Log Module

subsMgmt

Log Group

subscriber

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_IFL_CREATE

Message

Failed to create %s for subscriber %s

Description

Subscriber logical interface errors.

Log Module

subsMgmt

Log Group

subscriber

Severity

info

Recommended Actions

No action required.


Log ID

SUBSMGMT_IFL_DELETE

Message

Failed to delete %s for ifl %s

Description

Subscriber logical interface delete event.

Log Module

subsMgmt

Log Group

subscriber

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_QOS_CREATE

Message

QoS settings created for subscriber %s with IFL %s

Description

Add subscriber QoS settings.

Log Module

subsMgmt

Log Group

subscriber

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_QOS_RESET

Message

QoS settings reset for subscriber %s with IFL %s

Description

Reset subscriber QoS settings.

Log Module

subsMgmt

Log Group

subscriber

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_QOS_UPDATE

Message

QoS settings updated for subscriber %s with IFL %s

Description

Subscriber QoS setting is updated.

Log Module

subsMgmt

Log Group

subscriber

Severity

debug

Recommended Actions

No Action required.


Log ID

SUBSMGMT_BDS_TABLE_CREATED

Message

BDS table %s created

Description

BDS table has been created.

Log Module

subsMgmt

Log Group

bds

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_BDS_TABLE_CREATE_ERROR

Message

Failed to create BDS table %s

Description

Failed to create BDS table.

Log Module

subsMgmt

Log Group

bds

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_BDS_TABLE_GET_ERROR

Message

Failed to get BDS table %s

Description

Failed to receive BDS table or the BDS table is not found.

Log Module

subsMgmt

Log Group

bds

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_BDS_TEMPLATE_GET_ERROR

Message

Failed to get BDS object template %s

Description

Failed to receive the BDS object template.

Log Module

subsMgmt

Log Group

bds

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_BDS_TEMPLATE_POPULATE_ERROR

Message

Failed to populate BDS object template %s

Description

Failed to populate BDS object template.

Log Module

subsMgmt

Log Group

bds

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_BDS_OBJECT_ADD_ERROR

Message

Failed to add BDS object to table %s

Description

Failed to add BDS object to the table.

Log Module

subsMgmt

Log Group

bds

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_BDS_OBJECT_DEL_ERROR

Message

Failed to delete BDS object from table %s

Description

Failed to delete BDS object from the table.

Log Module

subsMgmt

Log Group

bds

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_PROFILE_ACTIVATE

Message

Failed to activate RADIUS profile

Description

RADIUS profile activation event.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_ACCOUNTING_QUEUE_INDEX

Message

RADIUS accounting queue index exhausted

Description

RADIUS accounting queue index

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

Contact Rtbrick customer support


Log ID

SUBSMGMT_RADIUS_AUTHENTICATION_QUEUE_INDEX

Message

RADIUS authentication queue index is exhausted

Description

RADIUS accounting queue index exhausted.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_ACCOUNTING_EVENT

Message

Failed to %s RADIUS accounting request from %s

Description

RADIUS accounting event.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_PROFILE_ADDED

Message

RADIUS Profile %s added

Description

Added a RADIUS profile.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_PROFILE_DELETED

Message

RADIUS profile %s deleted

Description

RADIUS profile has been deleted.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_PROFILE_NOT_FOUND

Message

RADIUS profile %s not found

Description

RADIUS profile has not been found.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_SERVER_ADDED

Message

RADIUS server %s added

Description

RADIUS server has been added.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_SERVER_DELETED

Message

RADIUS server %s deleted

Description

RADIUS server has been deleted.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_SERVER_DELETE_FAILED

Message

Failed to delete RADIUS server %s

Description

RADIUS server deletion failure.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_SERVER_NOT_FOUND

Message

RADIUS server %s not found

Description

RADIUS server is not found.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

Configure RADIUS server.


Log ID

SUBSMGMT_RADIUS_SERVER_ACCOUNTING_DISABLED

Message

RADIUS server %s accounting disabled

Description

RADIUS server accounting has been disabled.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

Check the RADIUS server configuration.


Log ID

SUBSMGMT_RADIUS_SERVER_AUTHENTICATION_DISABLED

Message

RADIUS server %s authentication disabled

Description

RADIUS server authentication has been disabled.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

Check the RADIUS server configuration.


Log ID

SUBSMGMT_RADIUS_SERVER_UNKNOWN

Message

RADIUS message from unknown server %s

Description

RADIUS requests from unknown IPv4 addresses.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

Check the RADIUS server configuration.


Log ID

SUBSMGMT_RADIUS_SERVER_GET_FAILED

Message

RADIUS server %s get failed while decoding RADIUS message %s

Description

RADIUS server failure.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_TUNNEL_ERROR

Message

Tunnel error %s for subscriber %s

Description

RADIUS subscriber tunnel-related errors.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_AUTHENTICATION_ERROR

Message

Authentication error %s for subscriber %s

Description

RADIUS subscriber tunnel-related errors.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_ACCOUNTING_ERROR

Message

Accounting error %s for subscriber %s

Description

RADIUS subscriber accounting error.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_ENCODE_ERROR

Message

Encode error %s for subscriber %s

Description

RADIUS encode error.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

Check RADIUS configurations.


Log ID

SUBSMGMT_RADIUS_AUTH_REQ

Message

Added RADIUS authentication request for subscriber %s from server %s

Description

RADIUS authentication request.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_AUTH_REQ_ERROR

Message

Failed to add RADIUS authentication request for subscriber %s from server %s

Description

RADIUS authentication request failure.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_ACCOUNTING_REQUEST

Message

Added RADIUS accounting request for subscriber %s from server %s

Description

RADIUS accounting request.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_ACCOUNTING_REGUEST_ERROR

Message

Failed to add RADIUS accounting request for subscriber %s from server %s

Description

RADIUS accounting request failure.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_AUTH_STATE_CHANGE

Message

RADIUS Server %s Authentication State changed from %s to %s

Description

State change in RADIUS server authentication.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_ACCT_STATE_CHANGE

Message

RADIUS Server %s Accounting State changed from %s to %s

Description

State change in RADIUS server accounting.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_PROFILE_STATE_CHANGE

Message

RADIUS Profile %s State changed from %s to %s

Description

State change in RADIUS profile accounting.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_PROFILE_ERROR

Message

RADIUS profile %s %s for subscriber %s

Description

RADIUS profile subscriber event.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_DROPPED

Message

RADIUS message from %s dropped due to %s

Description

RADIUS message has been dropped.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_ASCEND_DATA_FILTER

Message

Ascend Data Filter error for subscriber %s due to %s

Description

RADIUS filter message decode error.

Log Module

subsMgmt

Log Group

radius

Severity

notice

Recommended Actions

No action required.


Log ID

SUBSMGMT_RADIUS_ASCEND_DATA_FILTER_NOT_SUPPORTED

Message

Ascend Data Filter attribute %s with value %x not supported for subscriber %s

Description

RADIUS filter message decode error.

Log Module

subsMgmt

Log Group

radius

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_FSM_ERROR

Message

FSM Error for subscriber %s, State %s, Event %s

Description

Invalid event for the current state of subscriber FSM.

Log Module

subsMgmt

Log Group

subscriberfsm

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_FSM_NOT_FOUND

Message

Subscriber %s not found for FSM event %s

Description

Subscriber has not been found for the received FSM event.

Log Module

subsMgmt

Log Group

subscriberfsm

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_FSM_STATIC_IP_ALLOCATION

Message

Static IPv4 address from access-profile allocated for subscriber %s

Description

Subscriber FSM event logging.

Log Module

subsMgmt

Log Group

subscriberfsm

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_FSM_GENERAL_ERROR

Message

%s for subscriber %s

Description

Subscriber FSM Error logging.

Log Module

subsMgmt

Log Group

subscriberfsm

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_POOL_CONFIG

Message

Failed to process pool configuration

Description

Subscriber management Pool warning.

Log Module

subsMgmt

Log Group

pool

Severity

debug

Recommended Actions

Check the address pool configuration.


Log ID

SUBSMGMT_POOL_ASSIGN_IPV4

Message

Failed to assign ipv4 address for subscriber %s

Description

Subscriber management pool warning.

Log Module

subsMgmt

Log Group

pool

Severity

debug

Recommended Actions

Increase address pool size.


Log ID

SUBSMGMT_POOL_RELEASE_IPV4

Message

Failed to release ipv4 address for subscriber %s

Description

Subscriber management pool warning.

Log Module

subsMgmt

Log Group

pool

Severity

debug

Recommended Actions

Increase address pool size.


Log ID

SUBSMGMT_POOL_ASSIGN_IPV6

Message

Failed to assign ipv6 address for subscriber %s

Description

Subscriber management pool warning.

Log Module

subsMgmt

Log Group

pool

Severity

debug

Recommended Actions

Increase address pool size.


Log ID

SUBSMGMT_POOL_RELEASE_IPV6

Message

Failed to release ipv6 address for subscriber %s

Description

Subscriber management pool warning.

Log Module

subsMgmt

Log Group

pool

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_POOL_IPV4_SUCCESS

Message

IPv4 address %s from pool %s assigned to subscriber %s

Description

IPv4 address from the local address pool has been assigned.

Log Module

subsMgmt

Log Group

pool

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_POOL_IPV6_SUCCESS

Message

IPv6 prefix %s from pool %s assigned to subscriber %s

Description

IPv6 prefix from local address pool assigned.

Log Module

subsMgmt

Log Group

pool

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_TEST_AAA_RESULT

Message

Failed to %s from test aaa request for subscriber %s

Description

General test AAA requests related errors.

Log Module

subsMgmt

Log Group

subscriber

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_IPOE_RESULT

Message

Failed to %s from IPoE for subscriber %s

Description

General subscriber IPoE related errors.

Log Module

subsMgmt

Log Group

subscriber

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_L2BSA_GENERIC_ERROR

Message

%s

Description

General subscriber L2BSA related errors.

Log Module

subsMgmt

Log Group

subscriber

Severity

error

Recommended Actions

No action required.


Log ID

SUBSMGMT_L2BSA_RESULT

Message

Failed to %s from L2BSA service for subscriber %s

Description

General L2BSA subscriber related errors.

Log Module

subsMgmt

Log Group

l2bsa

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_PLATFORM_TYPE

Message

Platform type set to %s

Description

Platform type has been updated.

Log Module

subsMgmt

Log Group

general

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RD_INVALID_OBJECT

Message

Redundancy object with invalid subscriber-id/rd-session-id

Description

Redundancy invalid object.

Log Module

subsMgmt

Log Group

redundancy

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RD_INVALID_EVENT

Message

Invalid event on redundancy session %s, %s

Description

Redundancy invalid event.

Log Module

subsMgmt

Log Group

redundancy

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RD_SUBSCRIBER_EVENT

Message

Event for subscriber %s on redundancy session %s %s

Description

Redundancy subscriber event.

Log Module

subsMgmt

Log Group

redundancy

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RD_ADD_FAILED

Message

Failed to add subscriber %s for redundancy session %s

Description

Failure in redundancy sync.

Log Module

subsMgmt

Log Group

redundancy

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_RD_OBJECT_VALIDATION_FAILED

Message

Object validation failed for subscriber %s in redundancy session %s due to %s

Description

Redundancy invalid object.

Log Module

subsMgmt

Log Group

redundancy

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_FRAMED_ROUTE

Message

Framed route error for subscriber %s due to %s

Description

Error in RADIUS framed route handling.

Log Module

subsMgmt

Log Group

radius

Severity

notice

Recommended Actions

No action required.


Log ID

SUBSMGMT_LI_SUBSCRIBER_NOT_FOUND

Message

Subscriber %s not found, Lawful Intercept request is aborted

Description

The lawful intercept subscriber has not been found.

Log Module

subsMgmt

Log Group

lawful-intercept

Severity

info

Recommended Actions

No action required.


Log ID

SUBSMGMT_LI_IFL_NOT_FOUND

Message

Subscriber IFL not found for %s , Lawful Intercept request is aborted

Description

The lawful intercept subscriber IFL has not been found.

Log Module

subsMgmt

Log Group

lawful-intercept

Severity

info

Recommended Actions

No action required.


Log ID

SUBSMGMT_LI_INVALID_ATTRIBUTE

Message

Invalid Lawful Intercept attribute %s for subscriber %s

Description

Subscriber Lawful Intercept error.

Log Module

subsMgmt

Log Group

lawful-intercept

Severity

info

Recommended Actions

No action required.


Log ID

SUBSMGMT_LI_REQUEST_FAILURE

Message

Failed to process the Lawful Intercept request for subscriber %s

Description

Subscriber Lawful Intercept error.

Log Module

subsMgmt

Log Group

lawful-intercept

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_LI_DECRYPTION_FAILED

Message

RADIUS Lawful Intercept request attribute %s decryption failed %s for subscriber %s

Description

Subscriber Lawful Intercept error.

Log Module

subsMgmt

Log Group

lawful-intercept

Severity

info

Recommended Actions

No action required.


Log ID

SUBSMGMT_LI_MISSING_SUBSCRIBER_ID

Message

Mandatory subscriber_id is missing, Lawful Intercept request is aborted

Description

Subscriber Lawful Intercept error.

Log Module

subsMgmt

Log Group

lawful-intercept

Severity

info

Recommended Actions

No action required.


Log ID

SUBSMGMT_LI_BDS_OBJECT_ADD_ERROR

Message

Failed to add BDS object to table %s

Description

Failed to add BDS object to the table.

Log Module

subsMgmt

Log Group

lawful-intercept

Severity

debug

Recommended Actions

No action required.


Log ID

SUBSMGMT_LI_BDS_OBJECT_DEL_ERROR

Message

Failed to delete BDS object from table %s

Description

Failed to delete BDS object from table.

Log Module

subsMgmt

Log Group

lawful-intercept

Severity

debug

Recommended Actions

No action required.



©Copyright 2024 RtBrick, Inc. All rights reserved. The information contained herein is subject to change without notice. The trademarks, logos and service marks ("Marks") displayed in this documentation are the property of RtBrick in the United States and other countries. Use of the Marks are subject to RtBrickā€™s Term of Use Policy, available at https://www.rtbrick.com/privacy. Use of marks belonging to other parties is for informational purposes only.