HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

ipmitool — Interface with the Intelligent Platform Management Interface (IPMI). More information: <https://man.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandipmitoolintelligentinterfacecliwithplatform
linux

Problem

How to use the ipmitool command: Interface with the Intelligent Platform Management Interface (IPMI). More information: <https://man.freebsd.org/cgi/man.cgi?ipmitool>.

Solution

ipmitool — Interface with the Intelligent Platform Management Interface (IPMI). More information: <https://man.freebsd.org/cgi/man.cgi?ipmitool>.

Load the IPMI kernel module for local connections:
kldload ipmi.ko


Open IPMI shell on the local hardware:
ipmitool shell


Open IPMI shell on a remote host:
ipmitool -H {{ip_address}} -U {{user_name}} shell

Code Snippets

Load the IPMI kernel module for local connections

kldload ipmi.ko

Open IPMI shell on the local hardware

ipmitool shell

Open IPMI shell on a remote host

ipmitool -H {{ip_address}} -U {{user_name}} shell

Context

tldr-pages: freebsd/ipmitool

Revisions (0)

No revisions yet.