前提条件:
Linux系统须提前安装ipmitool相关组件,有3种方式安装
第一种:有互联网的情况下,直接yum install ipmi* -y或apt-get install ipmi*
第二种:无互联网情况下,使用操作系统镜像,配置本地镜像源,然后yum install或apt-get install安装,如何配置本地镜像源,这里不再赘述。
第三种:使用ipmitool源码包编译安装,安装也就几秒钟
适用场景:
ipmitool工具适用于华为、联想、浪潮、曙光、H3C、中兴、DELL、HP等所有厂商的服务器,因为这是国际通用标准协议,任何厂家都需要遵守
1.检测IPMI组件
lsmod | grep -i ipmi 工具使用检查是否有IPMI模块加载无法执行IPMITOOL,加载IPMI模块
modprobe ipmi_watchdog
modprobe ipmi_poweroff
modprobe ipmi_devintf
一般执行以上三条即可正常使用
modprobe ipmi_si
modprobe ipmi_msghandler
# dmidecode |sed -n '/IPMI/,+5p'
出现以下信息,说明支持IPMI
IPMI Device Information
Interface Type: KCS (Keyboard Control Style)
Specification Version: 2.0
I2C Slave Address: 0x10
NV Storage Device: Not Present
Base Address: 0x0000000000000CA8
如果提示找不到ipmi设备,手动创建设备
mknod /dev/ipmi0 c `cat /proc/devices | grep ipmidev |cut -d " " -f 1` 0
2.重启IPMI服务
#/etc/init.d/ipmi start
3.配置ip以及netmask
#ipmitool lan set 1 ipaddr 10.0.0.12 配置bmcIP
#ipmitool lan set 1 netmask 255.255.255.0 配置子网掩码
#ipmitool lan set 1 ipsrc static 设置地址为静态ip
#ipmitool lan set 1 defgw ipaddr 10.0.0.254 配置bmc ip 网关
4.重启BMC使配置生效
#ipmitool mc reset cold
等待约1分钟后,使用IE登录或ping 有效的IP地址,验证设置是否有效.
超微主板用户名:ADMIN 密码:ADMIN
华硕主板用户名:admin 密码:admin
泰安主板用户名:root 密码:superuser
5.使用ipmitool修改曙光刀箱管理地址?
可以手动配置一台刀箱管理地址用ipmitool工具查询验证,以下以TC4600E-G4为例
Ipmi地址为:20.10.1.201,使用ipmitool -H 20.10.1.201 -U admin -P admin lan print 1,发现没有地址,然后使用ipmitool lan print 8 发现可以查到刀箱的地址,因此使用ipmitool lan set 8 ipaddr 更改刀箱管理地址