1

I have an IBM System x3400 M3 Server -[7379KKG], with Win2008R2 installed in a different country. Somehow the consult who helped me installing it missed the IMM settings, or for some reason I can not find it online in that LAN (The cable is plugged well).

I tried communicating with the IMM using IBM Advanced Settings Utility, but every time I issue any commend, I get (IPMI command error, please check your IPMI driver and IBM mapping layer installation)

Is there anyway to fix the error above with IPMI? or if there is any tool that let me communicate with IMM from within Windows?

Thanks

3 Answers3

3

I came across this post while trying to find an answer. May be a bit late for Khamees, but hopefully it helps someone else out there. After spending an hour trying to work out if I downloaded the correct version of ASU or BIOS patch. I finally realised I needed to elevate my privileges. Doh! I'm an admin of the server, but due to windows UAC, you still need to run the command prompt as an Administrator. Click START - Right click Command Prompt and choose Run as Administrator. Then all the commands work. Too easy.

Nick
  • 31
  • 2
1

I went back and forth on this one on a 2008R2 server until I realized that I was not in the administrator command prompt. That solved everything. I could kick myself for that one.

0

Just to add some information:

I found this blog post that lead me to a solution:

To configure an IMM using the ASU tool you need this basic commands:

  • asu64.exe set IMM.HostName1 hostname
  • asu64.exe set IMM.HostIPAddress1 address
  • asu64.exe set IMM.HostIPSubnet1 netmask
  • asu64.exe set IMM.GatewayIPAddress1 gateway
  • asu64.exe set IMM.DHCP1 disabled
  • asu64.exe rebootimm

You can also run the tool in batch mode using the following command:

asu64.exe batch <FILE>

where <FILE> would contain the following lines following the example from above:

 set IMM.HostName1 <hostname>
 set IMM.HostIPAddress1 <address>
 set IMM.HostIPSubnet1 <netmask>
 set IMM.GatewayIPAddress1 <gateway>
 set IMM.DHCP1 disabled
 rebootimm
Thorian93
  • 138
  • 8