1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 20:35:25 +02:00

ipmitool: add page (#16012)

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Managor 2025-03-26 02:28:44 +02:00 committed by GitHub
parent 8f50573035
commit d9efa4897d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 44 additions and 0 deletions

12
pages/common/ipmitool.md Normal file
View file

@ -0,0 +1,12 @@
# ipmitool
> Interface with the Intelligent Platform Management Interface (IPMI).
> More information: <https://manned.org/ipmitool>.
- Open IPMI shell on the local hardware :
`sudo ipmitool shell`
- Open IPMI shell on a remote host:
`ipmitool -H {{ip_address}} -U {{user_name}} shell`

16
pages/freebsd/ipmitool.md Normal file
View file

@ -0,0 +1,16 @@
# ipmitool
> Interface with the Intelligent Platform Management Interface (IPMI).
> More information: <https://man.freebsd.org/cgi/man.cgi?query=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`

16
pages/linux/ipmitool.md Normal file
View file

@ -0,0 +1,16 @@
# ipmitool
> Interface with the Intelligent Platform Management Interface (IPMI).
> More information: <https://manned.org/ipmitool>.
- Start the IPMI driver for local connections:
`systemctl start ipmidrv`
- Open IPMI shell on the local hardware :
`sudo ipmitool shell`
- Open IPMI shell on a remote host:
`ipmitool -H {{ip_address}} -U {{user_name}} shell`