NVIDIA BlueField BMC Software v24.07
NVIDIA BlueField BMC Software v24.07

On This Page

System Logs

The System Event Log (SEL) and Event Log in OpenBMC provide robust mechanisms for monitoring, diagnosing, and troubleshooting hardware and system issues.

  • SEL

    • Functionality – The SEL captures and records significant system events related to hardware and firmware. This includes events such as hardware failures, temperature thresholds, power anomalies, and other critical system changes.

    • Access – The SEL can be accessed via IPMI\Redfish commands, allowing administrators to query and retrieve logs for analysis

    • Management – Administrators can clear, save, and manage SEL entries to maintain system health and ensure critical events are recorded accurately

  • Event Log:

    • Functionality – The Event Log provides a comprehensive record of both hardware and software events, offering detailed insights into system operations and potential issues. This includes firmware updates, configuration changes, security alerts, etc.

    • Access – The Event Log is accessible via Redfish interface, enabling easy retrieval and management of event data

    • Management – Users can filter, sort, and analyze events to identify patterns, diagnose problems, and improve system reliability. The Event Log supports exporting logs for offline analysis and archiving.

  • Key features

    • Scalability – Both the SEL and Event Log are designed to handle a high volume of events, ensuring no critical information is lost

    • Integration – These logs integrate seamlessly with existing management tools, providing a unified view of system health and events

    • Usability – User-friendly interfaces and command-line tools make it easy to access and manage logs, ensuring administrators can quickly respond to issues

Overall, the SEL and Event Log in OpenBMC are essential tools for maintaining system integrity, improving reliability, and ensuring swift resolution of any issues that arise.

Event Log Redfish Commands

Displaying Event Log Information

Copy
Copied!
            

curl -k -u root:'<password>' -H 'Content-Type: application/json' -X GET https://<bmc_ip>/redfish/v1/Systems/Bluefield/LogServices/EventLog/

Output example:

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog", "@odata.type": "#LogService.v1_1_0.LogService", "Actions": { "#LogService.ClearLog": { "target": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Actions/LogService.ClearLog" } }, "DateTime": "2023-09-27T14:28:50+00:00", "DateTimeLocalOffset": "+00:00", "Description": "System Event Log Service", "Entries": { "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries" }, "Id": "EventLog", "Name": "Event Log Service", "Oem": { "Nvidia": { "@odata.type": "#NvidiaLogService.v1_0_0.NvidiaLogService", "LatestEntryID": "4", "LatestEntryTimeStamp": "2023-09-27T14:19:30+00:00" } }, "OverWritePolicy": "WrapsWhenFull" }


Displaying List of Events

Copy
Copied!
            

curl -k -u root:'<password>' -H 'Content-Type: application/json' -X GET https://<bmc_ip>/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries

Output example:

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries", "@odata.type": "#LogEntryCollection.LogEntryCollection", "Description": "Collection of System Event Log Entries", "Members": [ { "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/1", "@odata.type": "#LogEntry.v1_9_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/1/attachment", "Created": "2023-09-27T14:18:39+00:00", "EntryType": "Event", "Id": "1", "Message": "12V_ATX sensor crossed a warning low threshold going low. Reading=6.048000 Threshold=10.400000.", "MessageArgs": [ "12V_ATX", "6.048000", "10.400000" ], "MessageId": "OpenBMC.0.1.SensorThresholdWarningLowGoingLow", "Name": "System Event Log Entry", "Resolution": "", "Resolved": false, "Severity": "OK" } … ], "Members@odata.count": 1, "Name": "System Event Log Entries" }


Clearing Event Log

Copy
Copied!
            

curl -k -u root:'<password>' -H 'Content-Type: application/json' -X POST https://<bmc_ip>/redfish/v1/Systems/Bluefield/LogServices/EventLog/Actions/LogService.ClearLog

SEL Redfish Commands

Displaying SEL Information

Copy
Copied!
            

curl -k -u root:'<password>' -H 'Content-Type: application/json' -X GET https://<bmc_ip>/redfish/v1/Systems/Bluefield/LogServices/SEL/

Output example:

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/SEL", "@odata.type": "#LogService.v1_1_0.LogService", "Actions": { "#LogService.ClearLog": { "target": "/redfish/v1/Systems/Bluefield/LogServices/SEL/Actions/LogService.ClearLog" } }, "DateTime": "2024-07-18T10:54:52+00:00", "DateTimeLocalOffset": "+00:00", "Description": "IPMI SEL Service", "Entries": { "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/SEL/Entries" }, "Id": "SEL", "Name": "SEL Log Service", "OverWritePolicy": "WrapsWhenFull" }


Displaying List of Events

Copy
Copied!
            

curl -k -u root:'<password>' -H 'Content-Type: application/json' -X GET https://<bmc_ip>/redfish/v1/Systems/Bluefield/LogServices/SEL/Entries

Output example:

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/SEL/Entries", "@odata.type": "#LogEntryCollection.LogEntryCollection", "Description": "Collection of System Event Log Entries", "Members": [ { "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/SEL/Entries/1", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "Created": "2024-07-16T15:34:32+00:00", "EntryType": "SEL", "Id": "1", "Message": "12V_ATX sensor crossed a warning low threshold going low. Reading=6.048000 Threshold=10.400000.", "MessageArgs": [ "12V_ATX", "6.048000", "10.400000" ], "MessageId": "OpenBMC.0.1.SensorThresholdWarningLowGoingLow", "Name": "System Event Log Entry", "Resolution": "Check the sensor or subsystem for errors.", "Resolved": false, "Severity": "OK" },   … ], "Members@odata.count": 22, "Name": "System Event Log Entries" }


Clearing Event Log

Copy
Copied!
            

curl -k -u root:'<password>' -H 'Content-Type: application/json' -X POST https://<bmc_ip>/redfish/v1/Systems/Bluefield/LogServices/EventLog/Actions/LogService.ClearLog


Configuring SEL Info Log Capacity

Copy
Copied!
            

curl -k -u root:'<password>' -H 'Content-Type: application/json' -X POST https://<bmc_ip>/redfish/v1/Managers/Bluefield_BMC/Actions/Oem/Nvidia/SelCapacity -d '{"ErrorInfoCap":300 }'


Getting SEL Info Log Capacity

Copy
Copied!
            

curl -k -u root:'<password>' -H 'Content-Type: application/json' -X GET https://<bmc_ip>/redfish/v1/Managers/Bluefield_BMC/Oem/Nvidia/SelCapacity

Example output:

Copy
Copied!
            

{ "ErrorInfoCap": 300 }

SEL IPMI Commands

The following table lists the command to use to view event logs:

Displaying SEL Information

Copy
Copied!
            

ipmitool -C 17 -I lanplus -H <bmc_ip> -U ADMIN -P ADMIN sel


Displaying List of Events

Copy
Copied!
            

ipmitool -C 17 -I lanplus -H <bmc_ip> -U ADMIN -P ADMIN sel list


Displaying Extended List of Events

Copy
Copied!
            

ipmitool -C 17 -I lanplus -H <bmc_ip> -U ADMIN -P ADMIN sel elist


Saving SEL Events to File

Copy
Copied!
            

ipmitool -C 17 -I lanplus -H <bmc_ip> -U ADMIN -P ADMIN sel save <filename>


Clearing SEL

Copy
Copied!
            

ipmitool -C 17 -I lanplus -H <bmc_ip> -U ADMIN -P ADMIN sel clear


Configuring SEL Info Log Capacity

The capacity is a 4-byte value, and the byte order is from low to high as shown in command example.

To set the capacity to 300 lines, the value should be 0x2c 0x01 0x00 0x00:

Copy
Copied!
            

ipmitool -C 17 -I lanplus -H <bmc_ip> -U ADMIN -P ADMIN raw 0x0a 0x4a <capacity[0:7]> <capacity[8:15]> <capacity[16:23]> <capacity[24:31]>


Getting SEL Info Log Capacity

Copy
Copied!
            

ipmitool -C 17 -I lanplus -H <bmc_ip> -U ADMIN -P ADMIN raw 0x0a 0x4b

SEL Message Types

The following subsections detail the messages which are added to the BMC SEL and the scenarios that trigger them.

UEFI Boot

Messages are added to the BMC SEL while the BlueField UEFI is booting which describe the status of the UEFI boot.

SEL messages:

  • SMBus initialization

  • PCI resource configuration

  • System boot initiated

Example:

Copy
Copied!
            

SEL Record ID : 0037 Record Type : 02 Timestamp : 06:36:06 UTC 06:36:06 UTC Generator ID : 0001 EvM Revision : 04 Sensor Type : System Firmware Sensor Number : 06 Event Type : Sensor-specific Discrete Event Direction : Assertion Event Event Data : c207ff Description : PCI resource configuration


IPMB Sensors

QSFP Sensors

Messages are added to the SEL in case of a change in the status of the QSFP cables. The messages describe the event and status of the sensor.

List of QSFP sensors:

  • P0_link – the QSFP 0 cable status

  • P1_link – the QSFP 1 cable status

SEL messages:

  • Config Error – the QSFP cable is down

  • Connected – the QSFP cable is up

Example:

Copy
Copied!
            

SEL Record ID : 003e Record Type : 02 Timestamp : 07:08:28 UTC 07:08:28 UTC Generator ID : 0020 EvM Revision : 04 Sensor Type : Cable / Interconnect Sensor Number : 00 Event Type : Sensor-specific Discrete Event Direction : Assertion Event Event Data (RAW) : 010f0f Event Interpretation : Missing Description : Config Error   Sensor ID : p0_link (0x0) Entity ID : 31.1 Sensor Type (Discrete): Cable / Interconnect States Asserted : Cable / Interconnect [Config Error]


Temperature Sensors

Messages are added to the SEL if temperature sensors detect a value higher than the sensor thresholds. The messages include a description of the event, BlueField FRU device description, BlueField BMC device description, and the status of the sensor.

List of temperature sensors:

  • bluefield_temp – Bluefield temperature

  • p0_temp – QSFP 0 cable temperature

  • p1_temp – QSFP 1 cable temperature

SEL messages:

  • Upper Critical going high – crossing a upper critical threshold

  • Upper Non-critical going high – crossing a upper non-critical threshold

  • Lower Critical going low – crossing a lower critical threshold

  • Lower Non-critical going low – crossing a lower non-critical threshold

Example:

Copy
Copied!
            

SEL Record ID : 003c Record Type : 02 Timestamp : 07:01:06 UTC 07:01:06 UTC Generator ID : 0020 EvM Revision : 04 Sensor Type : Temperature Sensor Number : 03 Event Type : Threshold Event Direction : Assertion Event Event Data (RAW) : 592802 Trigger Reading : 40.000degrees C Trigger Threshold : 2.000degrees C Description : Upper Critical going high   Sensor ID : p0_temp (0x3) Entity ID : 0.1 Sensor Type (Threshold) : Temperature Sensor Reading : 40 (+/- 0) degrees C Status : ok Lower Non-Recoverable : na Lower Critical : -5.000 Lower Non-Critical : 0.000 Upper Non-Critical : 70.000 Upper Critical : 75.000 Upper Non-Recoverable : na Positive Hysteresis : Unspecified Negative Hysteresis : Unspecified Assertion Events : Event Enable : Event Messages Disabled Assertions Enabled : lnc- lcr- unc+ ucr+ Deassertions Enabled : lnc+ lcr+ unc- ucr-   FRU Device Description : Nvidia-BMCMezz (ID 169) Board Mfg Date : Tue Jan 3 23:16:00 2023 UTC Board Mfg : Nvidia Board Product : Nvidia-BMCMezz Board Serial : MT2251XZ02W5 Board Part Number : 900-9D3B6-00CV-AAA   FRU Device Description : BlueField-3 Smar (ID 250) Board Mfg Date : Tue Jan 3 23:16:00 2023 UTC Board Mfg : Nvidia Board Product : BlueField-3 SmartNIC Main Card Board Serial : MT2251XZ02W5 Board Part Number : 900-9D3B6-00CV-AAA Product Manufacturer : Nvidia Product Name : BlueField-3 SmartNIC Main Card Product Part Number : 900-9D3B6-00CV-AAA Product Version : A3 Product Serial : MT2251XZ02W5 Product Asset Tag : 900-9D3B6-00CV-AAA

ADC Sensors

Messages are added to the SEL if the sensor voltage crosses the sensor's thresholds. The messages include a description of the event, BlueField FRU device description, BlueField BMC device description, and the status of the sensor.

List of ADC sensors:

  • 1V_BMC

  • 1_2V_BMC

  • 1_8V

  • 1_8V_BMC

  • 2_5V

  • 3_3V

  • 3_3V_RGM

  • 5V

  • 12V_ATX

  • 12V_PCIe

  • DVDD

  • HVDD

  • VDD

  • VDDQ

  • VDD_CPU_L

  • VDD_CPU_R

SEL messages:

  • Upper Non-critical going high – crossing a upper non-critical threshold

  • Lower Non-critical going low – crossing a lower non-critical threshold

Example:

Copy
Copied!
            

SEL Record ID : 0042 Record Type : 02 Timestamp : 09:20:50 UTC 09:20:50 UTC Generator ID : 0020 EvM Revision : 04 Sensor Type : Voltage Sensor Number : 06 Event Type : Threshold Event Direction : Assertion Event Event Data (RAW) : 50a9ff Trigger Reading : 1.200Volts Trigger Threshold : 1.810Volts Description : Lower Non-critical going low   Sensor ID : 1_2V_BMC (0x6) Entity ID : 0.1 Sensor Type (Threshold) : Voltage Sensor Reading : 1.200 (+/- 0) Volts Status : ok Lower Non-Recoverable : na Lower Critical : na Lower Non-Critical : 1.143 Upper Non-Critical : 1.257 Upper Critical : na Upper Non-Recoverable : na Positive Hysteresis : Unspecified Negative Hysteresis : Unspecified Assertion Events : Event Enable : Event Messages Disabled Assertions Enabled : lnc- unc+ Deassertions Enabled : lnc+ unc-   FRU Device Description : Nvidia-BMCMezz (ID 169) Board Mfg Date : Tue Jan 3 23:16:00 2023 UTC Board Mfg : Nvidia Board Product : Nvidia-BMCMezz Board Serial : MT2251XZ02W5 Board Part Number : 900-9D3B6-00CV-AAA   FRU Device Description : BlueField-3 Smar (ID 250) Board Mfg Date : Tue Jan 3 23:16:00 2023 UTC Board Mfg : Nvidia Board Product : BlueField-3 SmartNIC Main Card Board Serial : MT2251XZ02W5 Board Part Number : 900-9D3B6-00CV-AAA Product Manufacturer : Nvidia Product Name : BlueField-3 SmartNIC Main Card Product Part Number : 900-9D3B6-00CV-AAA Product Version : A3 Product Serial : MT2251XZ02W5 Product Asset Tag : 900-9D3B6-00CV-AAA


System Commands

Warm Rebooting BlueField

SEL messages:

Copy
Copied!
            

System boot initiated Initiated by warm reset

Example:

Copy
Copied!
            

SEL Record ID : 0001 Record Type : 02 Timestamp : 01/10/24 14:25:07 UTC Generator ID : 0020 EvM Revision : 04 Sensor Type : System Boot Initiated Sensor Number : 17 Event Type : Sensor-specific Discrete Event Direction : Assertion Event Event Data : 020000 Description : Initiated by warm reset


Hard Rebooting BlueField

SEL messages:

Copy
Copied!
            

System boot initiated Initiated by hard reset

Example:

Copy
Copied!
            

SEL Record ID : 0008 Record Type : 02 Timestamp : 01/10/24 14:33:01 UTC Generator ID : 0020 EvM Revision : 04 Sensor Type : System Boot Initiated Sensor Number : 17 Event Type : Sensor-specific Discrete Event Direction : Assertion Event Event Data : 010000 Description : Initiated by hard reset

If the host does not assert the PERST/ALL_STANDBY signal, causing the reset to fail, the following SEL messages can be observed:

Copy
Copied!
            

Power Unit Failure detected

Example:

Copy
Copied!
            

SEL Record ID : 0004 Record Type : 02 Timestamp : 07/25/24 13:32:18 UTC Generator ID : 0020 EvM Revision : 04 Sensor Type : Power Unit Sensor Number : 1b Event Type : Sensor-specific Discrete Event Direction : Assertion Event Event Data : 060000 Description : Failure detected


Shutting Down BlueField

SEL messages:

Copy
Copied!
            

OS Critical Stop OS graceful shutdown

Example:

Copy
Copied!
            

SEL Record ID : 000a Record Type : 02 Timestamp : 01/10/24 14:34:45 UTC Generator ID : 0020 EvM Revision : 04 Sensor Type : OS Critical Stop Sensor Number : 18 Event Type : Sensor-specific Discrete Event Direction : Assertion Event Event Data : 030000 Description : OS graceful shutdown


Updating BlueField BFB Image

SEL messages:

Copy
Copied!
            

Firmware or software change success

Example:

Copy
Copied!
            

SEL Record ID : 0007 Record Type : 02 Timestamp : 06/11/24 14:03:02 UTC Generator ID : 0020 EvM Revision : 04 Sensor Type : Version Change Sensor Number : 18 Event Type : Sensor-specific Discrete Event Direction : Assertion Event Event Data : c70000 Description : Firmware or software change success


Updating BMC

SEL messages:

Copy
Copied!
            

Firmware or software change success, Mngmt SW agent change

Example:

Copy
Copied!
            

SEL Record ID : 0010 Record Type : 02 Timestamp : 01/10/24 15:48:01 UTC Generator ID : 0020 EvM Revision : 04 Sensor Type : Version Change Sensor Number : 19 Event Type : Sensor-specific Discrete Event Direction : Assertion Event Event Data : c70e00 Description : Firmware or software change success, Mngmt SW agent change

RAS Errors

Multi-bit ECC

SEL messages:

Copy
Copied!
            

Uncorrectable ECC

Example:

Copy
Copied!
            

SEL Record ID : 024a Record Type : 02 Timestamp : 06/20/24 15:54:58 UTC Generator ID : 0020 EvM Revision : 04 Sensor Type : Memory Sensor Number : 17 Event Type : Sensor-specific Discrete Event Direction : Assertion Event Event Data : 010000 Description : Uncorrectable ECC


Single-bit ECC

SEL messages:

Copy
Copied!
            

Correctable ECC

Example:

Copy
Copied!
            

SEL Record ID : 0254 Record Type : 02 Timestamp : 06/20/24 16:01:05 UTC Generator ID : 0020 EvM Revision : 04 Sensor Type : Memory Sensor Number : 17 Event Type : Sensor-specific Discrete Event Direction : Assertion Event Event Data : 000000 Description : Correctable ECC

System Commands

Warm Rebooting BlueField

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/2", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/2/attachment", "Created": "2024-07-26T10:41:57+00:00", "EntryType": "Event", "Id": "2", "Message": "DPU Warm Reset", "Modified": "2024-07-26T10:41:57+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Hard Rebooting BlueField

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/7", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/7/attachment", "Created": "2024-07-26T09:50:16+00:00", "EntryType": "Event", "Id": "7", "Message": "DPU Hard Reset", "Modified": "2024-07-26T09:50:16+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }

If the host does not assert the PERST signal, causing the reset to fail:

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/8", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/8/attachment", "Created": "2024-07-26T09:58:34+00:00", "EntryType": "Event", "Id": "8", "Message": "PERST is in de-assert, skip SoC Hard Reset", "Modified": "2024-07-26T09:58:34+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }

If the host does not assert the ALL_STANDBY signal, causing the reset to fail:

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/8", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/8/attachment", "Created": "2024-07-26T09:58:34+00:00", "EntryType": "Event", "Id": "8", "Message": "ALL_STDBY is in de-assert, skip SoC Hard Reset", "Modified": "2024-07-26T09:58:34+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Shutting Down BlueField

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/18", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/18/attachment", "Created": "2024-07-26T13:56:46+00:00", "EntryType": "Event", "Id": "18", "Message": "DPU Shutdown", "Modified": "2024-07-26T13:56:46+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" },


Updating BMC

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/2", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/2/attachment", "Created": "2024-07-26T10:41:57+00:00", "EntryType": "Event", "Id": "2", "Message": "BMC SW update", "Modified": "2024-07-26T10:41:57+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" },


Adding BMC User

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/3", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/3/attachment", "Created": "2024-01-10T14:25:14+00:00", "EntryType": "Event", "Id": "3", "Message": "BMC User Create test0", "Modified": "2024-01-10T14:25:14+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Deleting BMC User

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/2", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/2/attachment", "Created": "2024-01-10T14:25:14+00:00", "EntryType": "Event", "Id": "2", "Message": "BMC User Delete test0", "Modified": "2024-01-10T14:25:14+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Renaming BMC User

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/2", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/2/attachment", "Created": "2024-01-10T14:25:14+00:00", "EntryType": "Event", "Id": "2", "Message": "BMC User Rename test0 To test1", "Modified": "2024-01-10T14:25:14+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


BMC User Login

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/27", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/27/attachment", "Created": "2024-06-11T13:07:34+00:00", "EntryType": "Event", "Id": "27", "Message": "User (root) logged in", "Modified": "2024-06-11T13:07:34+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


BMC User Logout

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/37", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/37/attachment", "Created": "2024-06-11T13:30:48+00:00", "EntryType": "Event", "Id": "37", "Message": "User (root) logged out", "Modified": "2024-06-11T13:30:48+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Changing BMC User Password

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/11", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/11/attachment", "Created": "2024-06-11T13:03:42+00:00", "EntryType": "Event", "Id": "11", "Message": "Password changed for root", "Modified": "2024-06-11T13:03:42+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Changing BlueField UEFI Password

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/7", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/7/attachment", "Created": "2024-06-11T13:02:04+00:00", "EntryType": "Event", "Id": "7", "Message": "Password changed for UEFI", "Modified": "2024-06-11T13:02:04+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Adding BMC IP Address

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/20", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/20/attachment", "Created": "2024-07-25T13:40:22+00:00", "EntryType": "Event", "Id": "20", "Message": "BMC IP Address Added", "Modified": "2024-07-25T13:40:22+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" },


Deleting BMC IP Address

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/21", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/21/attachment", "Created": "2024-01-10T15:53:57+00:00", "EntryType": "Event", "Id": "21", "Message": "BMC IP Address Deleted", "Modified": "2024-01-10T15:53:57+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Changing BMC IPv4 Mode to Static

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/6", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/6/attachment", "Created": "2024-06-11T13:02:04+00:00", "EntryType": "Event", "Id": "6", "Message": "Set IPv4 to Static mode", "Modified": "2024-06-11T13:02:04+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" },


Changing BMC IPv4 Mode to DHCP

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/9", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/9/attachment", "Created": "2024-06-11T13:02:05+00:00", "EntryType": "Event", "Id": "9", "Message": "Set IPv4 to DHCP mode", "Modified": "2024-06-11T13:02:05+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Changing BMC IPv6 Mode to Static

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/38", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/38/attachment", "Created": "2024-06-11T13:34:57+00:00", "EntryType": "Event", "Id": "38", "Message": "Set IPv6 to Static mode", "Modified": "2024-06-11T13:34:57+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Changing BMC IPv6 Mode to DHCP

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/39", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/39/attachment", "Created": "2024-06-11T13:35:03+00:00", "EntryType": "Event", "Id": "39", "Message": "Set IPv6 to DHCP mode", "Modified": "2024-06-11T13:35:03+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Changing BMC NTP Server

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/8", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/8/attachment", "Created": "2024-06-11T14:07:30+00:00", "EntryType": "Event", "Id": "8", "Message": "BMC NTP Servers Changed", "Modified": "2024-06-11T14:07:30+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Starting RShim on BMC

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/4", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/4/attachment", "Created": "2024-06-11T13:00:41+00:00", "EntryType": "Event", "Id": "4", "Message": "Started rshim service on BMC", "Modified": "2024-06-11T13:00:41+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Stopping RShim on BMC

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/35", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/35/attachment", "Created": "2024-06-11T13:29:19+00:00", "EntryType": "Event", "Id": "35", "Message": "Stopped rshim service on BMC", "Modified": "2024-06-11T13:29:19+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Reset of TOR E-Switch

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/32", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/32/attachment", "Created": "2024-06-11T13:19:57+00:00", "EntryType": "Event", "Id": "32", "Message": "Reset of TOR E-Switch", "Modified": "2024-06-11T13:19:57+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Setting Mode of 3-port Switch Ports to Allow All Ports to Access OOB RJ45

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/34", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/34/attachment", "Created": "2024-06-11T13:20:12+00:00", "EntryType": "Event", "Id": "34", "Message": "All ports are allowed access to RJ45", "Modified": "2024-06-11T13:20:12+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Setting Mode of 3-port Switch Ports to Allow Only BMC Port to Access OOB RJ45

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/33", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/33/attachment", "Created": "2024-06-11T13:20:09+00:00", "EntryType": "Event", "Id": "33", "Message": "Only BMC port is allowed access to RJ45", "Modified": "2024-06-11T13:20:09+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Clearing BMC SEL

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/2", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/2/attachment", "Created": "2024-06-11T13:49:03+00:00", "EntryType": "Event", "Id": "2", "Message": "Start clearing SEL", "Modified": "2024-06-11T13:49:03+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


BMC Factory Reset

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/1", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/1/attachment", "Created": "2024-06-11T13:49:03+00:00", "EntryType": "Event", "Id": "1", "Message": "BMC factory reset will take effect upon reboot", "Modified": "2024-06-11T13:49:03+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Resetting BMC Soft

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/17", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/17/attachment", "Created": "2024-01-10T15:52:46+00:00", "EntryType": "Event", "Id": "17", "Message": "BMC Soft Reset", "Modified": "2024-01-10T15:52:46+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Enabling RShim Access from Host

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/3", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/3/attachment", "Created": "2024-06-11T13:51:28+00:00", "EntryType": "Event", "Id": "3", "Message": "RShim access privilege from host will be enabled after NIC reset", "Modified": "2024-06-11T13:51:28+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Disabling RShim Access from Host

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/4", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/4/attachment", "Created": "2024-06-11T13:51:29+00:00", "EntryType": "Event", "Id": "4", "Message": "RShim access privilege from host will be disabled after NIC reset", "Modified": "2024-06-11T13:51:29+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Enabling BlueField DPU Mode

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/31", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/31/attachment", "Created": "2024-06-11T13:18:40+00:00", "EntryType": "Event", "Id": "31", "Message": "DPU mode will take effect after NIC reset", "Modified": "2024-06-11T13:18:40+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Enabling BlueField NIC Mode

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/30", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/30/attachment", "Created": "2024-06-11T13:18:39+00:00", "EntryType": "Event", "Id": "30", "Message": "NIC mode will take effect after NIC reset", "Modified": "2024-06-11T13:18:39+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Enabling BlueField Secure Boot

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/28", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/28/attachment", "Created": "2024-06-11T13:14:34+00:00", "EntryType": "Event", "Id": "28", "Message": "Secure Boot Option changed to Enable", "Modified": "2024-06-11T13:14:34+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Disabling BlueField Secure Boot

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/29", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/29/attachment", "Created": "2024-06-11T13:14:45+00:00", "EntryType": "Event", "Id": "29", "Message": "Secure Boot Option changed to Disable", "Modified": "2024-06-11T13:14:45+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Changing BlueField Boot Order

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/6", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/6/attachment", "Created": "2024-06-11T13:02:04+00:00", "EntryType": "Event", "Id": "6", "Message": "System boot order changed", "Modified": "2024-06-11T13:02:04+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Enabling BlueField Boot Source

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/4", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/4/attachment", "Created": "2024-07-26T09:49:42+00:00", "EntryType": "Event", "Id": "4", "Message": "System boot source enabled", "Modified": "2024-07-26T09:49:42+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Disabling BlueField Boot Source

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/5", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/5/attachment", "Created": "2024-07-26T09:49:42+00:00", "EntryType": "Event", "Id": "5", "Message": "System boot source disabled, "Modified": "2024-07-26T09:49:42+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" },


Changing BlueField Boot Source from Continuous to Once

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/3", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/3/attachment", "Created": "2024-07-26T09:49:42+00:00", "EntryType": "Event", "Id": "3", "Message": "System boot source will take effect for one boot", "Modified": "2024-07-26T09:49:42+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" },

Info

This log will not be generated if only the boot source is enabled without switching the boot override persistent setting


Changing BlueField Boot Source from Once to Continuous

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/3", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/3/attachment", "Created": "2024-07-26T10:42:31+00:00", "EntryType": "Event", "Id": "3", "Message": "System boot source will take effect continuously", "Modified": "2024-07-26T10:42:31+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }

Info

This log will not be generated if only the boot source is enabled without switching the boot override persistent setting


Changing BlueField Boot Source to Default

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/11", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/11/attachment", "Created": "2024-06-11T14:12:12+00:00", "EntryType": "Event", "Id": "11", "Message": "System boot source changed to Default", "Modified": "2024-06-11T14:12:12+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Changing BlueField Boot Source to PXE

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/12", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/12/attachment", "Created": "2024-06-11T14:12:13+00:00", "EntryType": "Event", "Id": "12", "Message": "System boot source changed to Network", "Modified": "2024-06-11T14:12:13+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Changing BlueField Boot Source to UEFI HTTP

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/12", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/12/attachment", "Created": "2024-06-11T14:12:13+00:00", "EntryType": "Event", "Id": "12", "Message": "System boot source changed to HTTP", "Modified": "2024-06-11T14:12:13+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Changing BlueField Boot Type to Legacy

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/9", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/9/attachment", "Created": "2024-06-11T14:09:40+00:00", "EntryType": "Event", "Id": "9", "Message": "System boot type changed to Legacy", "Modified": "2024-06-11T14:09:40+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Changing BlueField Boot Type to UEFI

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/10", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/10/attachment", "Created": "2024-06-11T14:10:43+00:00", "EntryType": "Event", "Id": "10", "Message": "System boot type changed to UEFI", "Modified": "2024-06-11T14:10:43+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }


Updating BlueField BFB Image

Copy
Copied!
            

{ "@odata.id": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/6", "@odata.type": "#LogEntry.v1_13_0.LogEntry", "AdditionalDataURI": "/redfish/v1/Systems/Bluefield/LogServices/EventLog/Entries/6/attachment", "Created": "2024-06-11T14:01:13+00:00", "EntryType": "Event", "Id": "6", "Message": "Starting Bluefield DPU BFB update", "Modified": "2024-06-11T14:01:13+00:00", "Name": "System Event Log Entry", "Resolved": false, "Severity": "OK" }

© Copyright 2024, NVIDIA. Last updated on Aug 16, 2024.