фев 272016
 

Когда вы пробуете получить доступ к консоли HP ILO2 посредством новых версий OpenSSH, вы увидите ошибку.
Для OpenSSH v.6
# ssh ilouser@iloserver
Received disconnect from iloserver: 2: Client Disconnect

Решение: добавьте параметр -o MACs=hmac-sha1 при вызове ssh:

# ssh -o MACs=hmac-sha1 ilouser@iloserver
ilouser@iloserver's password:

Для OpenSSH v.7
# ssh ilouser@iloserver
Unable to negotiate with UNKNOWN: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1

Решение: добавьте параметры -o KexAlgorithms=diffie-hellman-group1-sha1 -o MACs=hmac-sha1 при вызове ssh:

# ssh -o KexAlgorithms=diffie-hellman-group1-sha1 -o MACs=hmac-sha1 ilouser@iloserver
ilouser@iloserver's password:

  One Response to “Доступ к HP ILO2 через OpenSSH v6.2 и выше”

  1. The last command you provided worked for my legacy equipment.
    Thanks for posting!

 Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)