IPMI /远程pipe理缺lessBIOS中IP地址的选项

试图在此服务器上configuration远程访问和IPMI,但BIOS令人费解地没有configurationIP地址的空间。 手册中的屏幕截图显示了用于放置IP地址设置的空间,直观地,它们应该位于此屏幕上(“局域网设置”菜单)。

任何人遇到这样的情况? 我觉得有可能有​​其他地方的configuration,或者甚至可能需要调整主板上的跳线电缆?

更多信息

  • 这是来自超微板:X8DTT-F

在这里输入图像说明

这是手册的屏幕截图: 在这里输入图像说明

我无法在BIOS中编辑此信息,而是安装了CentOS 7,然后执行此操作:

安装ipmi工具

yum install ipmitool 

加载ipmi模块我仍然不完全明白为什么我必须在这里单独加载ipmitools模块:

 modprobe ipmi_devintf modprobe ipmi_msghandler modprobe ipmi_si modprobe ipmi_poweroff 

使用ipmitool而不是通过BIOS来configurationIPMI

 ipmitool lan set 1 ipsrc static # <-- Set static IP address instead of DHCP ipmitool lan set 1 ipaddr <ip_address> #<-- Put the ip address you want it to have here, probably a local one like 10.xxx or 192.168.xx ipmitool lan set 1 netmask <network mask> #<-- Set your netmask here (like 255.255.0.0) ipmitool lan set 1 defgw ipaddr <gateway> #<-- Set your gateway here (something like 10.1.1.1 or 192.168.1.1) ipmitool lan set 1 access on ipmitool user set name 5 <username> #<-- Set user name for IPMI ipmitool user set password 5 <password> #<-- set password 

此时,您应该可以通过Web浏览器访问IPMI:

在这里输入图像说明