web-dev-qa-db-ja.com

2つのHPiLOが応答しなくなり、コロになっています。リモートでトラブルシューティングする方法はありますか?

突然iLO接続が失われたDL360G5が2つあります。それらはリモートサイトにあるので、私は(まだ)物理的なトラブルシューティングを行うことができません。 iLOをリモートでトラブルシューティングする方法はありますか?現在、これらはWebブラウザーでアクセスできず、pingも実行できません。

最終的に物理的にアクセスできるようになった場合、どうすればよいですか(ケーブルの再接続/交換以外)?

OS:Linux

4
EGr

サーバー上で実行されているオペレーティングシステムにアクセスできる場合(どちらを指定しなかった場合)、hponcfgユーティリティを使用してILOをプログラムできます。

ここで実行できることは、コマンドのヘルプにリストされており、「-r」フラグは実際にILOをデフォルトにリセットします。 ILOの構成をファイルに書き込む「-w」のように、最初はそれほど厳しくないものを試してみます。デバイスがDHCPアドレスを取得したか、一部の設定を失った可能性があります。

hponcfg  -?
hponcfg  -h
hponcfg  -m minFw
hponcfg  -r [-m minFw ]
hponcfg  [-a] -w filename [-m minFw]
hponcfg  -g [-m minFw]
hponcfg  -f filename [-l filename] [-s namevaluepair] [-v] [-m minFw]
hponcfg  -i [-l filename] [-s namevaluepair] [-v] [-m minFw]

-h,  --help           Display this message
-?                    Display this message
-r,  --reset          Reset the RILOE II/iLO to factory default
-f,  --file           Get/Set RILOE II/iLO configuration from "filename" 
-i,  --input          Get/Set RILOE II/iLO configuration from the XML input 
                      received through the standard input stream.
-w,  --writeconfig    Write the RILOE II/iLO configuration to "filename"
-a,  --all            Capture complete iLO configuration to the file.
                      This should be used along with '-w' option
-l,  --log            Log replies to "filename"
-v,  --xmlverbose     Display all the responses from RILOE II/iLO
-s,  --substitute     Substitute variables present in input config file
                      with values specified in "namevaluepairs"
-g,  --get_hostinfo   Get the Host information
-m,  --minfwlevel     Minimum firmware level

参照: HP ILO 3はhponcfgユーティリティでXML構文エラーを発生します または リモートサーバーからHP Lights-Outにアクセス

7
ewwhite