IPMI / Remote management missing options for IP Address in BIOS

ipmiout-of-band-managementremote-access

Been trying to configure remote access and IPMI on this server, but the BIOS inexplicably does not have a space to configure an IP address. The screen shots in the manual show spaces for putting in the IP Address settings, and intuitively, they should be on this screen (Lan Settings menu).

Anyone run into a situation like this? I feel like there may be something off with the configuration elsewhere or perhaps even a jumper cable on the motherboard that needs to be adjusted?

More information

  • This is from a Supermicro board: X8DTT-F

enter image description here

This is the screen shot from the manual:
enter image description here

Best Answer

I was not able to edit this information in the BIOS, instead I installed CentOS 7, then did this:

Install ipmi tool

yum install ipmitool

load ipmi modules I still don't fully understand why I had to load the ipmitools modules separately here:

modprobe ipmi_devintf
modprobe ipmi_msghandler
modprobe ipmi_si
modprobe ipmi_poweroff

Configure IPMI using ipmitool instead of through the BIOS

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.x.x.x or 192.168.x.x
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

At this point, you should be able to access the IPMI through a web browser:

enter image description here

Related Topic