diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2022-01-07 19:35:26 +0100 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2022-01-07 19:35:26 +0100 |
commit | a8be5f2049ce24a66455a9a65b738b638eaf6814 (patch) | |
tree | 0ee184368e2dc7baf83d5e3ca97c88707e9eef99 | |
parent | 7550d3c3e81c8aa159dc5f6445b1184dcbcdbf2b (diff) | |
download | rgoncalves.se-a8be5f2049ce24a66455a9a65b738b638eaf6814.tar.gz |
wiki/dell-r710: Fix usage of ipmitool
-rw-r--r-- | src/w/dell-r710.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w/dell-r710.md b/src/w/dell-r710.md index fcd0ae7..80c2070 100644 --- a/src/w/dell-r710.md +++ b/src/w/dell-r710.md @@ -15,6 +15,6 @@ installed: Disable the automatic fan speed, and slows them down to the minimum. ``` -$ ipmitool -h ${host} ipmi_cmd raw 0x30 0x30 0x01 0x00 -$ ipmitool -h ${host} ipmi_cmd raw 0x30 0x30 0x02 0xff 0x0 +$ ipmitool -H ${host_ip} raw 0x30 0x30 0x01 0x00 +$ ipmitool -H ${host_ip} raw 0x30 0x30 0x02 0xff 0x0 ``` |