Get Inter Chassis Information
更新时间: 2026/08/06
在Gitcode上查看源码

Get Inter Chassis Information

Change History

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

Basic Information

Function Description

Querying Intra-Chassis Communication Information

Privilege

ReadOnly

Command Information

Request Information

ByteData Field
NetFnChassis 30h
CMD94h
1:3Manufacturer ID, LS Byte first. The length is fixed to three bytes. For example, if the vendor ID is 2011 and the corresponding hexadecimal value is 0x0007DB, the first byte is DBh, the second byte is 07h, and the third byte is 00h.
4Sub Command=6Fh
5ParameterSelector. For details, see Table 1 Intra-chassis communication parameters and corresponding response results.
6Reserved: reserved field

Response Information

ByteData Field
1Completion Code
2:4Manufacturer ID, LS Byte first. The length is fixed to three bytes. For example, if the vendor ID is 2011 and the corresponding hexadecimal value is 0x0007DB, the first byte is DBh, the second byte is 07h, and the third byte is 00h.
5DataLength: indicates the length of the response result.
6:NData. Response result. For details, see Table 1 Intra-chassis communication parameters and corresponding response results.

Table 1 Intra-subrack communication parameters and corresponding response results

ParameterSelector# (decimal)DataLengthData (response result)
InterChassisAuthEnabled11Whether intra-chassis communication is enabled. 0: disabled; 1: enabled.
AccessRoleId21Role ID of the intra-chassis communication user.
LoginInterface31Login Interface for Intra-Chassis Communication Users
bit0-Web: 0 disabled; 1 enabled
bit1-SNMP: 0 disabled; 1 enabled
bit2-IPMI: 0 disabled; 1 enabled
bit3-SSH: 0 disabled; 1 enabled
bit4-SFTP: 0 disabled; 1 enabled
bit6-Local: 0 disabled; 1 enabled
bit7-Redfish: 0 disabled; 1 enabled

Command Example

Display the intra-chassis communication status.

Request:

bash
ipmitool raw 0x30 0x93 0xdb 0x07 0x00 0x6F 0x01 0x00

Response:

text
db 07 00 01 01

Back to Index