ipmitool i2c后面参数是什么,能举个例子吗?
发布网友
发布时间:2023-06-24 20:41
我来回答
共2个回答
热心网友
时间:2024-12-04 06:18
后面的参数索要发所要发送的字节,可以是一个字符,或者是一个0到255之间的整数。
热心网友
时间:2024-12-04 06:19
For X7DBU motherboard, you can issue the following i2c command to get the FRU data from the power supply.
# ipmitool i2c bus=2 0x70 0x01 0x01
where bus=2 // for X7 or older motherboard, bus no. = 2 (0x05); for X8, bus no. = 3 (0x07)
0x70 // slave address of PS (it can be 0x70, 0x72, 0x74 for rendant PS)
0x01 // read 1 byte
0xYY // where YY is the offset of the PS
You may also pull out the same information using IPMI MasterWrite RAW command.
# ipmitool raw 0x06 0x52 0x05 0x70 0x01 0x00
The FRU data varies on the power supply mole. Please provide the model number of chassis or power supply to us.