diff --git a/pages/common/ipmitool.md b/pages/common/ipmitool.md new file mode 100644 index 00000000000000..8b677f50e7f08c --- /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 00000000000000..495fd941bd58ed --- /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 00000000000000..11524af54f3b39 --- /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`