From d9efa4897d8327adde7f598ce8cce8801c4b1c69 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Wed, 26 Mar 2025 02:28:44 +0200 Subject: [PATCH] ipmitool: add page (#16012) Co-authored-by: K.B.Dharun Krishna --- pages/common/ipmitool.md | 12 ++++++++++++ pages/freebsd/ipmitool.md | 16 ++++++++++++++++ pages/linux/ipmitool.md | 16 ++++++++++++++++ 3 files changed, 44 insertions(+) create mode 100644 pages/common/ipmitool.md create mode 100644 pages/freebsd/ipmitool.md create mode 100644 pages/linux/ipmitool.md diff --git a/pages/common/ipmitool.md b/pages/common/ipmitool.md new file mode 100644 index 0000000000..8b677f50e7 --- /dev/null +++ b/pages/common/ipmitool.md @@ -0,0 +1,12 @@ +# ipmitool + +> Interface with the Intelligent Platform Management Interface (IPMI). +> More information: . + +- 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` diff --git a/pages/freebsd/ipmitool.md b/pages/freebsd/ipmitool.md new file mode 100644 index 0000000000..495fd941bd --- /dev/null +++ b/pages/freebsd/ipmitool.md @@ -0,0 +1,16 @@ +# ipmitool + +> Interface with the Intelligent Platform Management Interface (IPMI). +> More information: . + +- 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` diff --git a/pages/linux/ipmitool.md b/pages/linux/ipmitool.md new file mode 100644 index 0000000000..11524af54f --- /dev/null +++ b/pages/linux/ipmitool.md @@ -0,0 +1,16 @@ +# ipmitool + +> Interface with the Intelligent Platform Management Interface (IPMI). +> More information: . + +- 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`