Dois HP iLOs não responderam e estão em um colo. Existe alguma maneira de solucionar problemas remotamente?

4

Temos dois DL360 G5s que de repente perderam a conectividade do iLO. Eles estão em um site remoto, portanto, não posso fazer nenhuma solução de problemas física (ainda). Existe alguma maneira de solucionar remotamente o iLO? Atualmente, eles não podem ser acessados em um navegador da Web e não podem receber ping.

Se eu eventualmente tiver acesso físico, o que devo fazer (além de reconectar / substituir o cabo)?

SO: Linux

    
por EGr 01.02.2013 / 23:04

1 resposta

7

Se você tiver acesso aos sistemas operacionais em execução nos servidores (você não indicou quais), poderá programar o ILO usando o utilitário hponcfg .

As coisas que você pode fazer aqui estão listadas na ajuda do comando, com o sinalizador "-r" realmente redefinindo o ILO como padrão. Eu tentaria algo menos sever primeiro, como "-w", que grava a configuração do ILO em um arquivo. Talvez o seu dispositivo tenha obtido um endereço DHCP ou perdido algumas configurações.

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

Consulte: O HP ILO 3 fornece erros de sintaxe XML com o utilitário hponcfg ou Acesse o HP Lights-Out do servidor remoto

    
por 01.02.2013 / 23:18