Feb 272016
From Pinoy UNIX Administrations
There are times when you want to have a quick access to the remote console of a server like HP’s ILO but you don’t want (not able) to open a web browser just to access it. But there is an ability to access it via SSH (text console only).
- Open a ssh connection to the ILO’s IP address.
# ssh ilo_admin@ip_address - Enter your ILO admin account and password. After that you will see the ILO prompt.
hpILO-> - To access the remote console of the server at the ILO prompt type “TEXTCONS”
hpILO->TEXTCONS - You will be presented with the Login: console. Enter your root or user account of the server to gain access.
Login:
Какая у вас версия iLO и версия SSH ?
У меня iLO завершает соединение на этапе DH-обмена
…
debug1: Local version string SSH-2.0-OpenSSH_6.7
debug1: Remote protocol version 2.0, remote software version mpSSH_0.2.1
debug1: no match: mpSSH_0.2.1
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes256-cbc hmac-sha1 none
debug1: kex: client->server aes256-cbc hmac-sha1 none
debug1: sending SSH2_MSG_KEXDH_INIT
debug1: expecting SSH2_MSG_KEXDH_REPLY
ssh: Received disconnect from 192.16.0.93: 11: Client Disconnect
Да, есть такая проблема, нужно добавить параметр “-o MACs=hmac-sha1”:
ssh -o MACs=hmac-sha1 ilouser@iloserver
http://wysotsky.info/ru/access-to-hp-ilo2-via-openssh-v6-2-and-higher/