How to install ipmitool to support IPMI on Debian Lenny for Dell PE sc1435
[
2010/04/27 14:40 | by askwan ]
2010/04/27 14:40 | by askwan ]
The Intelligent Platform Management Interface (IPMI) specification is an Intel led standard which defines a set of common interfaces to a computer system which system administrators can use to monitor system health and manage the system.
DELL PE sc1435 have Standard Baseboard Management Controller with IPMI 2.0 support,so we can use this feature to manage our servers .
IPMItool is a command line utility for managing and configuring systems with IPMI support. This tool allows you the ability to communicate directly with the IPMI card installed in the server or over a network using TCP/IP.
First , Power On PowerEdge sc1435 server ,when BIOS check , input Ctrl-E to keyboard:
then configure IMPI to the server, and also you can refer this guide document:
http://www.dell.com/downloads/global/power/ps4q04-20040204-Murphy.pdf
then,start OS(Debian Lenny 5.0.3 amd64)
http://ipmitool.sourceforge.net/manpage.html
Reference:
ftp://download.intel.com/design/servers/ipmi/IPMIv2_0rev1_0.pdf
http://en.wikipedia.org/wiki/Intelligent_Platform_Management_Interface
http://www.mainehost.com/DellPowerEdge-SC1435.pdf
http://openipmi.sourceforge.net/IPMI.pdf
http://lab.advancedclustering.com/twiki/bin/view/Documentation/IPMITools
http://lonesysadmin.net/2007/06/21/how-to-configure-ipmi-on-a-dell-poweredge-running-red-hat-enterprise-linux/
-------END------
DELL PE sc1435 have Standard Baseboard Management Controller with IPMI 2.0 support,so we can use this feature to manage our servers .
IPMItool is a command line utility for managing and configuring systems with IPMI support. This tool allows you the ability to communicate directly with the IPMI card installed in the server or over a network using TCP/IP.
First , Power On PowerEdge sc1435 server ,when BIOS check , input Ctrl-E to keyboard:
then configure IMPI to the server, and also you can refer this guide document:
http://www.dell.com/downloads/global/power/ps4q04-20040204-Murphy.pdf
then,start OS(Debian Lenny 5.0.3 amd64)
#apt-get install ipmitool #apt-get install openipmi libopenipmi-dev
# modprobe ipmi_watchdog # modprobe ipmi_poweroff # modprobe ipmi_devintf # modprobe ipmi_si # modprobe ipmi_msghandlerCheck if ipmi_xxx related kernel modules have loaded or not:
# lsmod |grep ipmi ipmi_si 43628 2 ipmi_devintf 13200 0 ipmi_poweroff 13776 0 ipmi_watchdog 22896 0 ipmi_msghandler 38520 4 ipmi_si,ipmi_devintf,ipmi_poweroff,ipmi_watchdogNow,as you see, it have loaded,create the IPMI device:
mknod /dev/ipmi0 c `cat /proc/devices | grep ipmidev | awk '{print $1}' ` 0
you can then use ipmitool now !
#ipmitool lan print 1
Set in Progress : Set Complete
Auth Type Support : NONE MD2 MD5 PASSWORD
Auth Type Enable : Callback : MD2 MD5
: User : MD2 MD5
: Operator : MD2 MD5
: Admin : MD2 MD5
: OEM : MD2 MD5
IP Address Source : Static Address
IP Address : 192.168.101.3
Subnet Mask : 255.255.255.0
MAC Address : 00:18:8b:89:52:84
SNMP Community String : public
IP Header : TTL=0x40 Flags=0x40 Precedence=0x00 TOS=0x10
Default Gateway IP : 192.168.101.1
Default Gateway MAC : 00:00:00:00:00:00
Backup Gateway IP : 0.0.0.0
Backup Gateway MAC : 00:00:00:00:00:00
802.1q VLAN ID : Disabled
802.1q VLAN Priority : 0
RMCP+ Cipher Suites : 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14
Cipher Suite Priv Max : aaaaaaaaaaaaaaa
: X=Cipher Suite Unused
: c=CALLBACK
: u=USER
: o=OPERATOR
: a=ADMIN
: O=OEM
and you can reconfigure ipmi sets:
# ipmitool -I open lan set 1 ipsrc static # ipmitool -I open lan set 1 ipaddr 192.168.101.154 Setting LAN IP Address to 192.168.101.154 # ipmitool -I open lan set 1 defgw ipaddr 192.168.101.1 Setting LAN Default Gateway IP to 192.168.101.1 # ipmitool -I open lan set 1 netmask 255.255.255.0 Setting LAN Subnet Mask to 255.255.255.0 # ipmitool -I open lan set 1 access on #ipmitool -I open user set password 2 askwan.comlogo to another server,check the server's system event log:
# ipmitool -I lan -H 192.168.101.154 -U root -a sel list Password:
1 | 01/08/2010 | 03:45:19 | Event Logging Disabled #0x72 | Log area reset/cleared | Asserted 2 | Pre-Init Time-stamp | Power Supply #0x65 | Power Supply AC lost | Asserted 3 | Pre-Init Time-stamp | Power Supply #0x74 | Redundancy Lost 4 | 01/31/2010 | 06:19:46 | Power Supply #0x65 | Failure detected | Asserted 5 | 01/31/2010 | 06:19:50 | Power Supply #0x74 | Redundancy Lost 6 | 02/04/2010 | 22:52:58 | Power Supply #0x65 | Power Supply AC lost | Asserted 7 | 02/04/2010 | 22:53:08 | Power Supply #0x65 | Power Supply AC lost | Deasserted 8 | 02/04/2010 | 22:53:10 | Power Supply #0x74 | Fully Redundant 9 | 02/21/2010 | 19:41:41 | Power Supply #0x65 | Failure detected | Asserted a | 02/21/2010 | 19:41:44 | Power Supply #0x74 | Redundancy Lost b | 04/05/2010 | 21:13:58 | Power Supply #0x74 | Fully Redundantfor more usage of ipmitool ,please refer ipmitool man page :
http://ipmitool.sourceforge.net/manpage.html
Reference:
ftp://download.intel.com/design/servers/ipmi/IPMIv2_0rev1_0.pdf
http://en.wikipedia.org/wiki/Intelligent_Platform_Management_Interface
http://www.mainehost.com/DellPowerEdge-SC1435.pdf
http://openipmi.sourceforge.net/IPMI.pdf
http://lab.advancedclustering.com/twiki/bin/view/Documentation/IPMITools
http://lonesysadmin.net/2007/06/21/how-to-configure-ipmi-on-a-dell-poweredge-running-red-hat-enterprise-linux/
-------END------
相关日志
compile net-snmp on debian lenny
debian5.0下Webmin的安装
"There is no public key available for the following key IDs" 问题
compile net-snmp on debian lenny
debian5.0下Webmin的安装
"There is no public key available for the following key IDs" 问题
作者:askwan@『AskWan』
地址:http://www.askwan.com/How_to_install_ipmitool_IPMI_support_IPMI_ON_Debian_Lenny_for_Dell_PE_sc1435/
可以转载,转载时请以链接形式注明作者和原始出处及本声明!
czxc
2010/06/03 10:34
czcc
Pages: 1/1
1
1
"500 ERROR: User 'root' cannot be used as an NX user"












