07
Fév
HPE iLO – Comment Retrouver une Clé de Licence iLO Déjà Installée
Comments
Avant le dépannage d’un serveur qui necessite le changement de la carte mére, il peut etre judicieux de récuperer la licence iLO qu’il faudra réappliquer. Pour cela le module HPEiLOCmdlets propose la cmdlet Get-HPEiLOLicense.
Il faut donc se connecter à la carte iLO du serveur :
$connexion = connect-hpeilo -Address x.x.x.15 -Credential $credential -DisableCertificateAuthentication -ErrorAction Stop
Puis utiliser la cmdlet Get-HPEiLOLicense :
Get-HPEiLOLicense -Connection $connexion
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
. PS C:\> $connexion = connect-hpeilo -Address x.x.x.15 -Credential $credential -DisableCertificateAuthentication -ErrorAction Stop PS C:\> Get-HPEiLOLicense -Connection $connexion License : iLO Advanced Key : 1ABCD-ABCDE-1A1AB-AB11A-A11AB LicenseInstallDate : Thu Feb 3 13:10:40 2022 LicenseClass : FQL IP : x.x.x.15 Hostname : ilo-monsrv Status : OK StatusInfo : . |
Donc avec une petite boucle comme ci-dessous, vous pouvez extraire toutes les licences iLO de votre infrastructure.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
. $credential=Get-Credential $report=@() foreach($line in (Find-HPEiLO -Range x.x.x.0-255,y.y.y.0-255)){ try{ $connexion = connect-hpeilo -Address $line.IP -Credential $credential -DisableCertificateAuthentication -ErrorAction Stop }catch{ write-host "Connexion Impossible au serveur $($line.Hostname) - $($line.IP) " } $licence = Get-HPEiLOLicense -Connection $connexion $row = "" | select iLO, IP, License, Key $row.iLO = $licence.Hostname $row.IP = $licence.IP $row.License = $licence.License $row.Key = $licence.key $report += $row } $report | Ft -AutoSize Connexion Impossible au serveur ILO-srv5 - x.x.x.31 iLO IP License Key --- -- ------- --- ilo-srv1 x.x.x.29 iLO Advanced 1AAAA-ABCDE-12345-ABCDE-S4DRM ilo-srv2 x.x.x.73 iLO Advanced 1AAAA-BCDEF-23456-BCDEF-QGXVH ilo-srv3 y.y.y.74 iLO Advanced 1AAAA-CDEFG-34567-CDEFG-HX6HM ilo-srv4 y.y.y.75 iLO Advanced 1AAAA-DEFGH-45678-DEFGH-9WLTB . |