summaryrefslogtreecommitdiffstats
path: root/supermicro/bin/supermicro-ipmi-reset
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-09-20 13:18:15 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-09-20 13:18:15 +0000
commita26ca671d62cd5bd482bc38a0c4766f9bd374b03 (patch)
treec2f7083b21c4107676bc43619ada2951253f8c8f /supermicro/bin/supermicro-ipmi-reset
parentReleasing debian version 20221227-1. (diff)
downloadopen-infrastructure-service-tools-a26ca671d62cd5bd482bc38a0c4766f9bd374b03.tar.xz
open-infrastructure-service-tools-a26ca671d62cd5bd482bc38a0c4766f9bd374b03.zip
Merging upstream version 20221228.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rwxr-xr-xsupermicro/bin/supermicro-ipmi-reset28
1 files changed, 28 insertions, 0 deletions
diff --git a/supermicro/bin/supermicro-ipmi-reset b/supermicro/bin/supermicro-ipmi-reset
new file mode 100755
index 0000000..6b6e11a
--- /dev/null
+++ b/supermicro/bin/supermicro-ipmi-reset
@@ -0,0 +1,28 @@
+#!/bin/sh
+
+set -e
+
+PROGRAM="$(basename "${0}")"
+
+HOST="$(sed -e 's|.host$|.management|' /etc/hostname)"
+ADDRESS="$(ipcalc-ng --all-info "$(dig +short AAAA "${HOST}")" | awk '/^Full Address/ { print $3 }')"
+
+if [ -z "${ADDRESS}" ]
+then
+ "${PROGRAM}: no IP address found for ${HOST}"
+ exit 1
+fi
+
+echo "${PROGRAM}: resetting ipmi to factory defaults (including users and lan)"
+ipmicfg -fdl -d
+
+echo "${PROGRAM}: disabling ipv4 dhcp for ipv6-only configuration"
+ipmicfg -dhcp off
+
+echo "${PROGRAM}: configuring ipmi to ${ADDRESS}"
+ipmicfg -ipv6 add 1 "${ADDRESS}" 64
+
+echo "${PROGRAM}: rebooting ipmi"
+ipmicfg -r -d
+
+echo "${PROGRAM}: done."