diff --git a/FIles/autofan.service b/FIles/autofan.service
new file mode 100644
index 0000000..9974d62
--- /dev/null
+++ b/FIles/autofan.service
@@ -0,0 +1,7 @@
+[Unit]
+Description=Fan Speed Controler using autofan.sh
+
+[Service]
+Restart=always
+RestartSec=10s
+ExecStart=/bin/bash /autofan.sh
diff --git a/FIles/autofan.sh b/FIles/autofan.sh
new file mode 100644
index 0000000..148af3b
--- /dev/null
+++ b/FIles/autofan.sh
@@ -0,0 +1,96 @@
+
+#!/bin/bash
+#
+# crontab -l > mycron
+# echo "#" >> mycron
+# echo "# At every 2nd minute" >> mycron
+# echo "*/1 * * * * /bin/bash /autofan.sh >> /tmp/cron.log" >> mycron
+# crontab mycron
+# rm mycron
+# chmod +x /autofan.sh
+#
+
+T1="$(sensors -Aj coretemp-isa-0000 | jq '.[][] | to_entries[] | select(.key | endswith("input")) | .value' | sort -rn | head -n1)"
+T2="$(sensors -Aj coretemp-isa-0001 | jq '.[][] | to_entries[] | select(.key | endswith("input")) | .value' | sort -rn | head -n1)"
+
+echo "==============="
+echo "CPU 1 Temp $T1 C"
+echo "==============="
+
+if [[ $T1 > 67 ]]
+ then
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 4 max 39'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 5 max 39'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 6 max 39'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 7 max 39'
+elif [[ $T1 > 58 ]]
+ then
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 4 max 30'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 5 max 30'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 6 max 30'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 7 max 30'
+elif [[ $T1 > 54 ]]
+ then
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 4 max 28'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 5 max 28'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 6 max 28'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 7 max 28'
+elif [[ $T1 > 52 ]]
+ then
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 4 max 24'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 5 max 24'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 6 max 24'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 7 max 24'
+elif [[ $T1 > 50 ]]
+ then
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 4 max 22'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 5 max 22'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 6 max 22'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 7 max 22'
+ else
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 4 max 20'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 5 max 20'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 6 max 20'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 7 max 20'
+fi
+
+echo "==============="
+echo "CPU 2 Temp $T2 C"
+echo "==============="
+
+if [[ $T2 > 67 ]]
+ then
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 0 max 39'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 1 max 39'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 2 max 39'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 3 max 39'
+elif [[ $T2 > 58 ]]
+ then
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 0 max 30'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 1 max 30'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 2 max 30'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 3 max 30'
+elif [[ $T2 > 54 ]]
+ then
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 0 max 28'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 1 max 28'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 2 max 28'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 3 max 28'
+elif [[ $T2 > 52 ]]
+ then
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 0 max 24'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 1 max 24'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 2 max 24'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 3 max 24'
+elif [[ $T2 > 50 ]]
+ then
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 0 max 22'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 1 max 22'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 2 max 22'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 3 max 22'
+ else
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 0 max 20'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 1 max 20'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 2 max 20'
+ sshpass -p YOURPASSWORD ssh YOURUSERNAME@YOUR ILO IP 'fan p 3 max 20'
+fi
diff --git a/FIles/ilo_250/CP027911.xml b/FIles/ilo_250/CP027911.xml
new file mode 100644
index 0000000..bb4098e
--- /dev/null
+++ b/FIles/ilo_250/CP027911.xml
@@ -0,0 +1,2467 @@
+
+
+
+ - HPQLOCFG 1.1 (replaces CPQLOCFG)
+ - HP Lights-Out XML Scripting Sample 4.3.0 bundle
+ - HPONCFG 4.3.0
+ - LOCFG.PL 4.20 (included in the HP Lights-Out XML Scripting Sample 4.3.0 bundle)
+ - HPLOMIG 4.3.0 (upgrade HPLOMIG before installing this version of iLO 4]]>
+
+
+ - HPQLOCFG 1.1 (replaces CPQLOCFG)
+ - HP Lights-Out XML Scripting Sample 4.3.0 bundle
+ - HPONCFG 4.3.0
+ - LOCFG.PL 4.20 (included in the HP Lights-Out XML Scripting Sample 4.3.0 bundle)
+ - HPLOMIG 4.3.0 (upgrade HPLOMIG before installing this version of iLO 4]]>
+
+ Download the SCEXE file to the target server.
+ Execute: sh CP0xxxxx.scexe
+ To obtain firmware image for updating via iLO user interface, utilities, or scripting interface:
+ Download the SCEXE file to a client running a Linux operating system. Execute: sh CP0xxxxx.scexe --unpack=directory
+ This command will unpack the ilo4_1XX.bin into a user specified "directory". If the directory does not exist, the unpacker will attempt to create it.
+ To use HP Smart Update Manager on the Firmware Maintenance CD:
+ Place the Firmware Maintenance CD on a USB key using the USB Key Creator Utility.
+ Copy CP0xxxxx.scexe to /compaq/swpackages directory on the USB Key.
+ Follow HP Smart Update Manager steps to complete firmware update.
+ To obtain firmware image for updating via iLO user interface, utilities, or scripting interface:
+ Download the SCEXE file to a client running a Linux operating system. Execute: sh CP0xxxxx.scexe --unpack=directory
+ This command will unpack the ilo4_1XX.bin into a user specified "directory". If the directory does not exist, the unpacker will attempt to create it.
+ To use HP Smart Update Manager on the Firmware Maintenance CD:
+ Place the Firmware Maintenance CD on a USB key using the USB Key Creator Utility.
+ Copy CP0xxxxx.scexe to /compaq/swpackages directory on the USB Key.
+ Follow HP Smart Update Manager steps to complete firmware update.
iLO 4 User Guide and Lights-Out Scripting Guide can also be found by following the links at:
+
+http://www.hpe.com/info/ilo
+
+Select your lights-out product, then support & documents, then manuals.
+
iLO 4 User Guide and Lights-Out Scripting Guide can also be found by following the links at:
+
+http://www.hpe.com/info/ilo
+
+Select your lights-out product, then support & documents, then manuals.
+
Also included in this release:
+ +このリリースに含まれる:
+ +Also included in this release:
+ +このリリースに含まれる:
+ ++]]> +
+]]> +
• The Remote Console security settings were moved from the Administration >
+ Security > Remote Console page to the Remote Console > Security page.
+ • The new Authentication Failure Delay Time setting allows users to
+ configure the duration of the iLO login delay after a failed login attempt.
+ This setting can be configured on the Access Settings page.
+ • The new Authentication Failures Before Delay setting allows users to configure
+ the number of failed login attempts that are allowed before iLO imposes a
+ login delay. This setting can be configured on the Access Settings page.
+ • iLO 4 2.20 and later allows you to install multiple language packs.
+ - For iLO 4 2.10 and earlier—You can install one language pack.
+ Installing a new language pack replaces the currently installed language
+ pack, regardless of the language pack version.
+ - For iLO 4 2.20 and later—Language packs are not supported on servers that
+ do not have a NAND. To continue using language packs on servers without a NAND
+ use iLO 4 2.10 or earlier.
+ - When you upgrade from an earlier version of iLO 4 to version 2.20 or
+ later, previously installed language packs are deleted.
+ - iLO 4 2.20 or later requires version 2.20 or later of the iLO language
+ pack.
+ - When version 2.20 or later of a language pack is installed, installing a new
+ language pack of the same language (version 2.20 or later) replaces the currently
+ installed language pack.
+ - The following language packs are available: Japanese and Simplified
+ Chinese.
+ • The HP ProLiant Agentless Management Service status is now listed on the
+ Information > System Information > Summary page.
+ • Trusted Module status is now displayed on the Information > Overview page.
+ • RIBCL scripts and the CLP can now be used to send a test trap to test the
+ SNMP configuration.
+ • Added support for IPv6 in IPMI LAN Configuration Command Parameters.
• リモートコンソールのセキュリティ設定が、管理 > セキュリティ > リモートコンソールページから、リモートコンソール > セキュリティページに移動しました。
• 新しい認証失敗遅延時間の設定は、ログイン試行に失敗した後のiLOログイン遅延の時間をユーザーが構成することを可能にします。
この設定は、アクセス設定ページで構成することができます。
• 新しい遅延前認証失敗設定は、iLOがログイン遅延を課す前に許される失敗したログイン試行の回数を構成することをユーザーに可能にします。 この設定は、アクセス設定ページで構成することができます。
• iLO 4 2.20以降は、複数の言語パックをインストールすることができます。
- iLO 4 2.10以前の場合、1つの言語パックをインストールすることができます。
新しい言語パックをインストールすると現在インストールされている言語パックを言語パックのバージョンに関係なく置き換えます。
-iLO4 2.20以降の場合、言語パックはNANDを持たないサーバーではサポートされません。 NANDを持たないサーバーで言語パックを使用し続けるには、iLO 4 2.10以前を使用します。
- iLO 4の以前のバージョンからバージョン2.20以降へアップグレードする場合、以前にインストールされた言語パックは削除されます。
- iLO 4 2.20以降には、バージョン2.20以降のiLO言語パックが必要です。
- バージョン2.20以降の言語パックがインストールされている場合、同じ言語の新しい言語パック(バージョン2.20以降)をインストールすると、現在インストールされている言語パックを置き換えます。
- 以下の言語パックが利用可能です:日本語、簡体字中国語。
• HP ProLiant Agentless Management Serviceステータスは、現在、情報 > システム情報 > サマリーページにリストされます。
• Trusted Moduleステータスは、現在、情報 > 概要ページに表示されます。
• RIBCLスクリプトおよびCLPは、現在、SNMP構成をテストするためにテストトラップを送信するために使用することができます。
• IPMI LAN構成コマンドパラメーターにIPv6のサポートを追加しました。
• When the iLO 4 firmware is updated to version 2.20, the iLO security settings might be
+ reset to the default values.
+ • Embedded media handling was updated to reduce embedded media errors.
+ • Addressed SSRT102184
+
+The following issues are resolved in version 2.20 (replaced by 2.22):
+
+ • Fixed detection of the Intel GPU sensor in Gen9 servers with the GPU. This allows
+ fans to be controlled more reasonably.
+ • Staged ROM settings might be lost after CONREP is run if the server was reset before
+ iLO was reset.
+ • The correct number of license seats is not displayed when 256 or more seats are
+ licensed.
+ • Fixed an IPMI driver issue for Linux.
+ • Fixed a Virtual Media disconnect issue.
+ • Fixed a DHCP client renewal issue.
+ • The Alertmail page in the iLO web interface rejects email addresses with the following
+ format: wwww@xxxx.yyy.zz.
+ • Fixed an IPMI boot option issue when IPMI tool is used.
+ • The set command in the iLO CLI does not finish on DL380 Gen9 servers.
+ • The iLO IPv6 options are set to the default values when FIPS mode is enabled.
+ • The iLO web interface hangs for a few minutes when a long string is entered in the
+ Firmware URL box on the Group Firmware Update page.
+ • Added an iLO workaround for IPMI tool boot parameter command options.
+ • LDAP authentication fails when a password contains diacritic characters.
+ • iLO sends several multicast join/leave requests when disabling multicast.
+ • iLO event logs that contain an IP address are dropped if the DNS lookup queue is
+ full. These events are now logged with (DNS name not found) in place of the DNS name.
+ • The iLO web interface allows an iLO Federation Group Key with more than 32 characters
+ when the character limit is 31.
+ • The set_Boot_Mode.xml script fails when you use HPONCFG to set legacy mode for Gen8
+ servers.
+ • The Firmware page incorrectly displays slot 0 for HP220i Host adapters.
+ • The Asset Tag can be set via XML when the server is powered off, except for when
+ the server is in UEFI mode.
+ • An Embedded Flash/SD-Card subsystem failure is not logged in the iLO Event Log.
+ • iLO does not reset when Active Health System logging is enabled via XML.
+ • An iLO Event Log entry is not recorded when network settings are modified
+ by using the CLI.
+ • The floppy disc boot options always, never, and once are displayed in the Gen9 CLI,
+ but these features are not supported.
+ • A TPM Caution message is not displayed when a new language pack is installed.
+ • The tooltip on the Device Inventory page does not disappear when you click
+ outside the table.
+]]> +
• iLO 4ファームウェアがバージョン2.20にアップデートされると、iLOセキュリティ設定がデフォルト値にリセットされることがあります。
• 内蔵メディアエラーを削減するために、内蔵メディア処理がアップデートされました。
• SSRT102184に対処しました。
バージョン2.20で、以下の問題を解決しました (2.22で置き換えられました):
• GPUを持つGen9サーバーでのIntel GPUセンサーの検出を修正しました。 より合理的にファンを制御することを可能にします。
• iLOがリセットされる前にサーバーがリセットされた場合に、CONREPが実行された後ステージされたROM設定が失われることがあります。
• 256以上のライセンスが付与されると、ライセンス数の正しい数が表示されません。
• Linux用のIPMIドライバーの問題を修正しました。
• 仮想メディアの切断問題を修正しました。
• DHCPクライアントの更新問題を修正しました。
• iLO Webインターフェイスのアラートメールページが、次の形式のメールアドレスを拒否します: wwww@xxxx.yyy.zz。
• IPMIツールが使われる場合のIPMIブートオプション問題を修正しました。
• iLO CLIのsetコマンドが、DL380 Gen9サーバーで完了しません。
• FIPSモードが有効な場合、iLO IPv6オプションはデフォルト値に設定されます。
• グループファームウェアアップデートページのファームウェアURLボックスに長い文字列が入力されたとき、iLO Webインターフェイスが数分間ハングします。
• IPMIツールのブートパラメーターコマンドオプションのiLO回避策を追加しました。
• パスワードが分音記号文字を含んでいる場合、LDAP認証が失敗します。
• マルチキャストを無効にするときに、iLOはいくつかのマルチキャストjoin/leaveリクエストを送信します。
• DNSルックアップキューがいっぱいの場合、IPアドレスを含むiLOイベントログが削除されます。 これらのイベントは、現在DNS名の代わりに(DNS名が見つかりません)と記録されます。
• 文字制限が31でも、iLO Webインターフェイスは32文字以上のiLO連携グループキーを許します。
• Gen8サーバーに対してレガシーモードを設定するためにHPONCFGを使用すると、set_Boot_Mode.xmlスクリプトが失敗します。
• ファームウェアページが、HP220iホストアダプターに対してスロット0を誤って表示します。
• サーバーがUEFIモードのときを除いて、サーバーが電源オフのときに、XMLを介して資産タグを設定することができます。
• 内蔵フラッシュ/SDカードサブシステム障害は、iLOイベントログに記録されません。
• Active Health SystemログがXMLを介して有効にされると、iLOはリセットされません。
• ネットワーク設定がCLIを使用して変更された場合、iLOイベントログエントリーが記録されません。
• フロッピーディスクブートオプション [always、never、once]がGen9 CLIで表示されますが、これらの機能はサポートされていません。
• 新しい言語パックがインストールされている場合、TPM警告メッセージが表示されません。
• テーブルの外側をクリックした場合、デバイスインベントリページのツールチップが消えません。
+]]> +
• The Remote Console security settings were moved from the Administration >
+ Security > Remote Console page to the Remote Console > Security page.
+ • The new Authentication Failure Delay Time setting allows users to
+ configure the duration of the iLO login delay after a failed login attempt.
+ This setting can be configured on the Access Settings page.
+ • The new Authentication Failures Before Delay setting allows users to configure
+ the number of failed login attempts that are allowed before iLO imposes a
+ login delay. This setting can be configured on the Access Settings page.
+ • iLO 4 2.20 and later allows you to install more than one language pack.
+ - For iLO 4 2.10 and earlier—You can install one language pack at a time.
+ Installing a new language pack replaces the currently installed language
+ pack, regardless of the language pack version.
+ - For iLO 4 2.20 and later—Language packs are not supported on servers that
+ do not have a NAND. Servers without a NAND should continue to use iLO
+ 4 2.10.
+ - iLO 4 2.20 or later requires version 2.20 or later of the iLO language
+ pack.
+ - When you upgrade from an earlier version of iLO 4 to version 2.20 or
+ later, previously installed language packs are deleted.
+ - The following language packs are available: Japanese and Simplified
+ Chinese.
+ • The HP ProLiant Agentless Management Service status is now listed on the
+ Information > System Information > Summary page.
+ • Trusted Module status is now displayed on the Information > Overview page.
+ • RIBCL scripts and the CLP can now be used to send a test trap to test the
+ SNMP configuration.
+ • Added support for IPv6 in IPMI LAN Configuration Command Parameters.
+]]> +
• リモートコンソールのセキュリティ設定が、管理 > セキュリティ > リモートコンソールページから、リモートコンソール > セキュリティページに移動しました。
• 新しい認証失敗遅延時間の設定は、ログイン試行に失敗した後のiLOログイン遅延の時間をユーザーが構成することを可能にします。
この設定は、アクセス設定ページで構成することができます。
• 新しい遅延前認証失敗設定は、iLOがログイン遅延を課す前に許される失敗したログイン試行の回数を構成することをユーザーに可能にします。 この設定は、アクセス設定ページで構成することができます。
• iLO 4 2.20以降は、複数の言語パックをインストールすることができます。
- iLO 4 2.10以前の場合、一度に1つの言語パックをインストールすることができます。
新しい言語パックをインストールすると現在インストールされている言語パックを言語パックのバージョンに関係なく置き換えます。
-iLO4 2.20以降の場合、言語パックはNANDを持たないサーバーではサポートされません。 NANDを持たないサーバーは、iLO 4 2.10を使用し続ける必要があります。
- iLO 4 2.20以降には、バージョン2.20以降のiLO言語パックが必要です。
- iLO 4の以前のバージョンからバージョン2.20以降へアップグレードする場合、以前にインストールされた言語パックは削除されます。
- 以下の言語パックが利用可能です:日本語、簡体字中国語。
• HP ProLiant Agentless Management Serviceステータスは、現在、情報 > システム情報 > サマリーページにリストされます。
• Trusted Moduleステータスは、現在、情報 > 概要ページに表示されます。
• RIBCLスクリプトおよびCLPは、現在、SNMP構成をテストするためにテストトラップを送信するために使用することができます。
• IPMI LAN構成コマンドパラメーターにIPv6のサポートを追加しました。
+]]> +
• Fixed detection of the Intel GPU sensor in Gen9 servers with the GPU. This allows
+ fans to be controlled more reasonably.
+ • Staged ROM settings might be lost after CONREP is run if the server was reset before
+ iLO was reset.
+ • The correct number of license seats is not displayed when 256 or more seats are
+ licensed.
+ • Fixed an IPMI driver issue for Linux.
+ • Fixed a Virtual Media disconnect issue.
+ • Fixed a DHCP client renewal issue.
+ • Alertmail webpage rejects email addresses with wwww@xxxx.yyy.zz format
+ • Fixed an IPMI boot option issue when using IPMI tool.
+ • The set command in the iLO CLI does not finish on DL380 Gen9 servers.
+ • The iLO IPv6 options are set to the default values when FIPS mode is enabled.
+ • The iLO web interface hangs for a few minutes when a long string is entered for a
+ group firmware update.
+ • Added an iLO workaround for IPMI tool boot parameter command options.
+ • LDAP authentication fails when a password contains diacritic characters.
+ • LDAP authentication might fail against a properly configured OpenLDAP server due to
+ protocol version restrictions.
+ • iLO sends several multicast join/leave requests when disabling multicast.
+ • iLO event logs that contain an IP address are dropped if the DNS lookup queue is
+ full. These events are now logged with (DNS name not found) in place of the DNS name.
+ • The iLO web interface allows an iLO Federation Group Key with more than 32 characters
+ when the character limit is 31.
+ • The set_Boot_Mode.xml script fails when you use HPONCFG to set legacy mode for Gen8
+ servers.
+ • The Firmware page incorrectly displays slot 0 for HP220i Host adapters.
+ • The Asset Tag can be set via XML when the server is powered off, except for when
+ the server is in UEFI mode.
+ • An Embedded Flash/SD-Card subsystem failure is not logged in iLO Event log.
+ • iLO does not reset when Active Health System logging is enabled via XML.
+ • An iLO event log entry is not recorded when network settings are modified
+ by using the CLI.
+ • The floppy disc boot options always, never, and once are displayed in the Gen9 CLI,
+ but these features are not supported.
+ • A TPM Caution message is not displayed when a new language pack is installed.
+ • The tooltip on the Device Inventory page does not disappear when you click
+ outside the table.
+]]> +
• GPUを持つGen9サーバーでのIntel GPUセンサーの検出を修正しました。 より合理的にファンを制御することを可能にします。
• iLOがリセットされる前にサーバーがリセットされた場合に、CONREPが実行された後ステージされたROM設定が失われることがあります。
• 256以上のライセンスが付与されると、ライセンス数の正しい数が表示されません。
• Linux用のIPMIドライバーの問題を修正しました。
• 仮想メディアの切断問題を修正しました。
• DHCPクライアントの更新問題を修正しました。
• アラートメールウェブページがwwww@xxxx.yyy.zz形式のメールアドレスを拒否します。
• IPMIツールを使用する場合のIPMIブートオプション問題を修正しました。
• iLO CLIのsetコマンドが、DL380 Gen9サーバーで完了しません。
• FIPSモードが有効な場合、iLO IPv6オプションはデフォルト値に設定されます。
• 長い文字列がグループファームウェアのアップデートのために入力されたとき、iLO Webインターフェイスが数分間ハングします。
• IPMIツールのブートパラメーターコマンドオプションのiLO回避策を追加しました。
• パスワードが分音記号文字を含んでいる場合、LDAP認証が失敗します。
• プロトコルバージョンの制約のために正しく構成されたOpenLDAPサーバーに対してLDAP認証が失敗することがあります。
• マルチキャストを無効にするときに、iLOはいくつかのマルチキャストjoin/leaveリクエストを送信します。
• DNSルックアップキューがいっぱいの場合、IPアドレスを含むiLOイベントログが削除されます。 これらのイベントは、現在DNS名の代わりに(DNS名が見つかりません)と記録されます。
• 文字制限が31でも、iLO Webインターフェイスは32文字以上のiLO連携グループキーを許します。
• Gen8サーバーに対してレガシーモードを設定するためにHPONCFGを使用すると、set_Boot_Mode.xmlスクリプトが失敗します。
• ファームウェアページが、HP220iホストアダプターに対してスロット0を誤って表示します。
• サーバーがUEFIモードのときを除いて、サーバーが電源オフのときに、XMLを介して資産タグを設定することができます。
• 内蔵フラッシュ/SDカードサブシステム障害は、iLOイベントログに記録されません。
• Active Health SystemログがXMLを介して有効にされると、iLOはリセットされません。
• ネットワーク設定がCLIを使用して変更された場合、iLOイベントログエントリーが記録されません。
• フロッピーディスクブートオプション [always、never、once]がGen9 CLIで表示されますが、これらの機能はサポートされていません。
• 新しい言語パックがインストールされている場合、TPM注意メッセージが表示されません。
• テーブルの外側をクリックした場合、デバイスインベントリページのツールチップが消えません。
+]]> +
+ • New CLI and RIBCL commands for sending SNMP test traps.
+ • Agentless Management support for standup storage card firmware versions.
+ • The iLO IP address can now be used as the SubjectAltName in a certificate signing request.
+ • IPMI transport over IPv6.
+ • HP RESTful API updates, including support for:
+ - Mezz and base FRUs
+ - GET of data to retrieve the Active Health System log
+ - Support Logs
+ • Flex Slot Battery Backup Unit information is displayed on the Information > System Information > Power page.
+ • Physical and logical network adapters are displayed on the Information > System Information > Network page.
+ • NIC teaming information is displayed on the Information > System Information > Network page.
+ • Information about devices installed on the system board, such as adapters, PCI devices, SATA controllers, and Smart Storage Batteries is displayed on the new Information > System Information > Device Inventory page.
+ • HP and third-party storage controllers that manage direct-attached storage and the attached physical drives are displayed on the Information > System
+ Information > Storage page.
+ • HP Smart Storage Battery information is displayed on the Information > System Information > Summary, Information > System Information > Power, and Information > System Information > Device Inventory pages.
+ • In addition to the supported OEM parameters, the IPMI boot options for UEFI now support the standard parameters.
+ • Extended the functionality of Lock_Configuration.xml to include restricting the IPMI interface from the system channel.
+ • Added support for IPMI 2.0 PEF and PET generation to the IPMI interface.
+ • SNMPテストトラップを送信するための新しいCLIおよびRIBCLコマンド。
• スタンドアップストレージカードファームウェアバージョンのためのAgentless Managementサポート。
• iLO IPアドレスが、証明書署名要求でSubjectAltNameとして使用することができます。
• IPv6上のIPMIトランスポート。
• 次のサポートを含むHP RESTful APIのアップデート:
- メザニンおよびベースFRU
- Active Health Systemログを取得するためのデータのGET
- サポートログ
• Flex Slot Battery Backup Unit情報が、情報 > システム情報 > 電源ページに表示されます。
• 物理および論理ネットワークアダプターが、情報 > システム情報 > ネットワークページに表示されます。
• NICチーミング情報が、情報 > システム情報 > ネットワークページに表示されます。
• アダプター、PCIデバイス、SATAコントローラー、およびSmart Storage Batteryなどのようなシステムボード上にインストールされているデバイスに関する情報が、新しく情報 > システム情報 > デバイスインベントリページに表示されます。
• 直接接続ストレージおよび接続された物理ドライブを管理するHPやサードパーティのストレージコントローラーが、情報 > システム情報 > ストレージページに表示されます。
• HP Smart Storage Battery情報が、情報 > システム情報 > 概要、情報 > システム情報 > 電源、および情報 > システム情報 > デバイスインベントリページに表示されます。
• サポートされているOEMパラメーターに加えて、UEFIのためのIPMIブートオプションは標準的なパラメーターをサポートします。
• システムチャネルからIPMIインターフェイスを制限することを含むために、Lock_Configuration.xmlの機能を拡張しました。
• IPMIインタフェースにIPMI2.0 PEFおよびPET生成のためのサポートを追加しました。
+ Note: To address the “POODLE” security vulnerability, the iLO security policy has changed and SSLv3 is now disabled. You may need to enable TLS (Transport Layer Security) in your browser in order to access the iLO web interface. TLS is the successor to SSL (Secure Sockets Layer).
+
+
+
+ 注: “POODLE”セキュリティ脆弱性に対処するために、iLOセキュリティポリシーが変更されて、SSLv3が無効にされました。 iLO Webインターフェイスにアクセスするために、ブラウザーでTLS (Transport Layer Security)を有効にする必要があるかもしれません。 TLSは、SSL (Secure Sockets Layer)に代わるものです。
+
++
++
++
++
+]]> ++
+]]> ++ - Support for SNMP v3
++ - Location Discovery Services (BL/SL)
++ - 3D temp graph
++ - Support for Remote Syslog of server events
++ - Support for e-Mail alerting of server events
++ - Serial Console Record/Playback
++ - Support for new iLO Essentials license option
++ - Support for new iLO Scale-Out license option
++ - FIPS (Federal Information Processing Standard) Mode compliance support**
++ - Integrated Remote Console now supports .NET Framework v4.0
++
+]]> ++ - SNMP v3のサポート
++ - BL/SLに対するLocation Discovery Services(位置情報検出機能)
++ - 3D温度グラフ
++ - サーバーイベントのリモートSyslogのサポート
++ - サーバーイベントのメールアラートのサポート
++ - シリアルコンソール記録/再生
++ - 新しいiLO Essentialsライセンスオプションのサポート
++ - 新しいiLOスケールアウトライセンスオプションのサポート
++ - FIPS(Federal Information Processing Standard)モード準拠サポート**
++ - 統合リモートコンソールは、.NET Framework v4.0をサポートします
++
+]]> ++ - iLO 4 no longer fails to synchronize the date and time with the Onboard Administrator.
+
+ - The iLO 4 Certificate Signing Request countryName object was changed from a UTF8 object to
+ a printable string. This will prevent some Certificate Authorities from rejecting the iLO 4 CSR.
+ - The Integrated Remote Console will now disconnect Virtual Media when the USB flash drive is
+ physically removed.
+ - The Integrated Remote Console no longer fails to open and displays “HTTP error: The operation
+ has timed out”.
+ - iLO 4 will no longer become inaccessible for 40 minutes after an unreachable SNMP alert destination
+ is entered.
+ - iLO 4 on BL460c Gen8 servers will no longer log the random event "System Overheating (Temperature
+ Sensor 3, Location CPU, Temperature 0C)" in the IML if the second processor isn’t populated.
+ - The SNMP tags have been removed from the MOD_GLOBAL_SETTINGS command. TO modify the SNMP
+ parameters, you must now use the MOD_SNMP_IM_SETTINGS command.
+ - The pre-failure video playback will no longer end without showing video.
+
+ - A user with insufficient privileges can no longer modify the network settings by using the
+ iLO command line interface.
+
+ - Increased buffer size to allow the importing of a X.509 certificate file up to 3072 bytes long (Base64 encoded).
+ - iLO 4は、Onboard Administratorによる日付と時刻の同期に失敗しなくなりました。
++ - iLO 4の証明書署名要求countryNameオブジェクトは、UTF8オブジェクトから印刷可能文字列に変更されました。 これにより、いくつかのCA(証明書機関)がiLO 4 CSRを拒絶することを回避します。
++ - USBフラッシュドライブが物理的に取り外された時、統合リモートコンソールは仮想メディアを切断します。
++ - 統合リモートコンソールは、オープンに失敗することはなくなりました。その際のHTTPエラー"操作はタイムアウトしました"の表示をしなくなりました。
++ - 到達不能なSNMPアラートの送信先が入力された後、40分間、iLO 4がアクセス不能になることはなくなりました。
++ - 第2プロセッサーがインストールされない場合、BL460c Gen8サーバーのiLO 4は、IMLにランダムなイベント"System Overheating (Temperature Sensor 3, Location CPU, Temperature 0C)"を記録しなくなりました。
++ - SNMPタグが、MOD_GLOBAL_SETTINGSコマンドから削除されました。 SNMPパラメーターを変更するには、MOD_SNMP_IM_SETTINGSコマンドを使用する必要があります。
++ - 事前障害ビデオの再生は、ビデオを表示しないで終了しなくなります。
+
+ - 十分な権限を持たないユーザーが、iLOのコマンドラインインターフェイスを使用してネットワーク設定を変更することはできなくなりました。
- (base64エンコードされた)3072バイト長までのX.509証明書ファイルのインポートを可能にするためにバッファーサイズを増やしました。