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

服务器的内存告警后,连接管理口查看信息,管理口状态灯显示正常,但是无法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

配置笔记本网卡地址为同网段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

配置用户访问权限

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

相关推荐

  1. 服务器服务器管理和网

    2023-12-23 08:22:07       62 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2023-12-23 08:22:07       98 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2023-12-23 08:22:07       106 阅读
  3. 在Django里面运行非项目文件

    2023-12-23 08:22:07       87 阅读
  4. Python语言-面向对象

    2023-12-23 08:22:07       96 阅读

热门阅读

  1. python开发:日志工具logging的使用

    2023-12-23 08:22:07       67 阅读
  2. Python高级语法与正则表达式

    2023-12-23 08:22:07       60 阅读
  3. Golang 在 Mac、Linux、Windows 下如何交叉编译

    2023-12-23 08:22:07       62 阅读
  4. 大数据开发职业规划

    2023-12-23 08:22:07       68 阅读
  5. Cmake

    Cmake

    2023-12-23 08:22:07      70 阅读
  6. 决策树相关算法_ID3_C45_信息熵_剪枝

    2023-12-23 08:22:07       61 阅读