This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# This script going to fix the IMM (v1) web access,by enabling HTTPS. | |
# Reference: https://support.lenovo.com/hu/en/solutions/ht504331 | |
# First, you have to download and install the IBM Advanced Settings Utility. | |
# Then adjust your hostname, username and password. The script assuming factory defaults. | |
# self signed cert generation: | |
/opt/lenovo/toolscenter/asu/asu64 set IMM.https_service enable --host=192.168.70.125 --user=USERID --password=PASSW0RD | |
# SSL enable | |
/opt/lenovo/toolscenter/asu/asu64 set IMM.SSL_Server_Enable enable --host=192.168.70.125 --user=USERID --password=PASSW0RD | |
# reboot the IMM | |
/opt/lenovo/toolscenter/asu/asu64 rebootimm --host=192.168.70.125 --user=USERID --password=PASSW0RD |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment