Ipmitool - Perl interface to the ipmitool.


Ipmitool documentation  | view source Contained in the Ipmitool distribution.

Index


NAME

Top

Ipmitool - Perl interface to the ipmitool.

SYNOPSIS

Top

  use Ipmitool;
  use Data::Dumper;
  $i = Ipmitool->new(-ipaddress => "10.8.151.179", -username => "root", -password => "changeme");
  $i->print();
  %FRU = $i->fru();
  print Dumper($i);
  $i->bmc("info");

DESCRIPTION

Top

Ipmitool module lets you manage Intelligent Platform Management Interface (IPMI) functions of either the local system, via a kernel device driver, or a remote system, using IPMI V1.5 and IPMI v2.0. These functions include printing FRU information, LAN configuration, sensor readings, and remote chassis power control.

METHODS

Top

new()

This function will create object of ipmitool class, takes ipaddress, username, password as a input paramter

fru()

This function will access perticular machine's fru information and returns the FRU HASH.

bmc()

This function prints the bmc information of the machine.

SEE ALSO

Top

http://ipmitool.sourceforge.net/manpage.html

AUTHOR

Top

Manjunath Kumatagi, <manjunath.kumatagi@gmail.com<gt>

COPYRIGHT AND LICENSE

Top


Ipmitool documentation  | view source Contained in the Ipmitool distribution.