服务器的内存告警后,连接管理口查看信息,管理口状态灯显示正常,但是无法ping通和访问。

处理过程如下:

1、在centos 6.6中安装ipmitool,替换为阿里云的yum源,然后安装。

# wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-6.10.repo

# yum -y install ipmitool

2、查找可用lan channel

# for i in `seq 1 14`; do ipmitool lan print $i 2>/dev/null | grep -q ^Set && echo Channel $i; done

3、显示channel1的网络配置信息

# ipmitool lan print 1

服务器IBM x3650 m2 管理口访问故障处理-LMLPHP

配置笔记本网卡地址为同网段IP,无法访问。重新配置了IP地址也无效。

4、重启BMC热启动,能够正常访问了。

# ipmitool mc reset cold

5、浏览器访问http://192.168.70.125

6、扩展配置命令

配置使用静态地址

# ipmitool lan set 1 ipsrc static

配置通道1的IP

# ipmitool lan set 1 ipaddr 172.20.254.16

配置子网信息

# ipmitool lan set 1 netmask 255.255.255.0

配置网关

# ipmitool lan set 1 defgw ipaddr 172.20.254.1

配置允许访问

# ipmitool -I open lan set 1 access on

查看配置信息

# ipmitool user list 1

服务器IBM x3650 m2 管理口访问故障处理-LMLPHP

配置用户访问权限

# ipmitool -I open channel setaccess 1 2  callin=on ipmi=on link=on privilege=4

12-22 18:28