SMCIBU: Supermicro BIOS Utility

From Define Wiki
Revision as of 16:24, 21 March 2013 by Michael (talk | contribs) (Created page with "== Licencing Target Machine == To licence a single system <syntaxhighlight> java -jar SMCIPMITool.jar <target server IP> <username> <password> bios getMACs </syntaxhighlight> To licence multiple...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Licencing Target Machine

To licence a single system

java -jar SMCIPMITool.jar <target server IP> <username> <password> bios getMACs

To licence multiple systems

java –jar SMCIPMITool.jar <IP> <username> <password> bios getMACs <start> <end> <netMask> <file>

It will produce an putput file consisting of the MAC addresses and IPMI address of each system it can find. Send this file to super micro to get the product keys.

003048001012; 192.168.34.1;
003048001015; 192.168.34.2;
003048001014; 192.168.34.3;
003048001013; 192.168.34.4;


Activating the ndoes

java -jar SMCIPMITool.jar 192.168.34.56 ADMIN XXXXXX bios setKeys mymacs.txt.key

This will produce a file '<filename>.act'. It will contain the MAC address, IPMI address, Product Key and return status. These should all say 'done', but some other examples are shown below.

003048001012; 192.168.34.1; 1111-1111-1111-1111-1111-1111 ; Done
003048001013; 192.168.34.2; 2222-2222-2222-2222-2222-2222 ; Error: Cannot connect to IP
003048001014; 192.168.34.3; 3333-3333-3333-3333-3333-3333 ; Error: MAC does not match
003048001015; 192.168.34.4; 4444-4444-4444-4444-4444-4444 ; Error: Product Key invalid
003048001016; 192.168.34.5; 5555-5555-5555-5555-5555-5555 ; Error: unknown
003048001016; 192.168.34.6; 5555-5555-5555-5555-5555-5555 ; Done
003048001016; 192.168.34.7; 5555-5555-5555-5555-5555-5555 ; Done

Reason activation might fail

  1. Incorrect MAC address
  2. lower case MAC address
  3. Wrong IPMI address


==