Get Command Support
更新时间: 2026/08/06
在Gitcode上查看源码

Get Command Support

Change History

openUBMC VersionRevision DateDescription
25.062025/06/26Initial draft: add command details

Basic Information

Function Description

Query the IPMI command support capability.

Privilege

User

Command Information

Request Information

ByteData Field
NetFn06h
CMD0Ah
1Channel: channel for querying the command support
2Operation: indicates the operation parameters for querying the command support. The details are as follows:
[0:5] NetFN: NetFN required for querying the command support.
[6:7] Operation: Query the command support flag. The values are as follows:
00b: The query command ranges from 00h to 7Fh.
01b: The query command ranges from 80h to FFh.
3Specifies the LUN whose command support is to be queried. The value range is [0, 3].

Response Information

ByteData Field
1Completion Code
2:17Support mask. The meaning of each bit in the mask is as follows: 00b: The command is available. 01b: The command is unavailable.
The overall mask layout is as follows (depending on the operation in the request):
byte 1, bit 0 corresponds to command 00h or command 80hbyte 1, bit 7 corresponds to command 07h or command 87h...byte 16, bit 0 correspond to command 78h or command F8hbyte 16, bit 7 corresponds to command 7Fh or command FFh

Command Example

IPMI command support capability

Request:

bash
ipmitool raw 0x06 0x0A 0x01 0x06 0x00

Response:

text
01 c0 ff ff cb 3f 00 c0 00 00 0e fc ec ff ff ff

Back to Index