超微母卡上的 ipmi

Ber*_*aud 1 ipmi supermicro

作为新手,我尝试将 IPMI 与超微母卡 x8dth-if 1.0 版
一起使用,我决定使用 LAN1,而不是专用的 IPMI LAN。
在 BIOS 中,我将 IPMI 的地址设置为 192.168.1.199。
我的操作系统是 debian-squeeze。我安装了ipmitool。
LAN1地址是192.168.1.35,我可以ping通。
命令 ipmitool chassis status 返回

Could not open /dev/ipmi0
Run Code Online (Sandbox Code Playgroud)

ls -l /dev/ipmi* 不返回任何内容。ping 192.168.1.199 返回超时
如何在此级别进行更多调查?提前谢谢你。

小智 5

确保在使用 ipmitool 实用程序之前加载了这些内核模块:

modprobe ipmi_si
modprobe ipmi_msghandler
modprobe ipmi_devintf
Run Code Online (Sandbox Code Playgroud)

模块成功加载后,您至少应该在系统的 dmesg 输出中看到:

[    4.611088] ipmi_si 00:0c: Found new BMC (man_id: 0x0028c5, prod_id: 0x0004, dev_id: 0x22)
[    4.611097] ipmi_si 00:0c: IPMI kcs interface initialized
Run Code Online (Sandbox Code Playgroud)

现在您应该能够使用 ipmitool 或 OpenIPMI 实用程序通过 kcs 接口连接到您的 IPMI。