Is there a way I can set the LAN port to "Dedicate" like I can through the web interface on IPMI in the 6016T-6RFT+ server, without logging in to the web interface for each box? I'd like to be able to script some configuration to the device.
For servers with the Aten IPMI firmware, please use IPMITOOL with the following command:
# ipmitool –H –U –P raw 0x30 0x70 0xc [param1] [param2] [param3]
To Get the LAN mode status:
Input: NetFn 0x30
Cmd 0x70
Param1 0x0c
Param2 0 [0:read]
Output: Completion Code 0x00
Data [0:dedicated / 1:onboard / 2:failover]
To Set the LAN mode:
Input: NetFn 0x30
Cmd 0x70
Param1 0x0c
Param2 1 [1:write]
Param3 [0:dedicated / 1:onboard / 2:failover]
Output: Completion Code 0x00
Note: IPMITOOL is a shareware and can be downloaded from http://sourceforge.net/projects/ipmitool/.