28
Août
OneView – Vérifier le ‘Remote Support’ des serveurs en PowerShell
Comments
Pour Lister dans l’application OneView le statut du « Support à Distance » (Remote Support) de vos serveurs, vous pouvez lancer la commande PowerShell :
Get-HPOVServer | select name ,@{N=’Remote Support’;E={$_.remoteSupportSettings.remoteSupportCurrentState}}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
. Get-HPOVServer | select name ,@{N='Remote';E={$_.remoteSupportSettings.remoteSupportCurrentState}} name Remote ---- ------ monChassis, bay 10 Registered monChassis, bay 11 Registered monChassis, bay 12 Registered ilo-monserveur1 Unknown ilo-monserveur2 Registered ilo-monserveur3 Registered ilo-monserveur4 Unknown ilo-monserveur5 Unknown . |
Pour lister les serveurs ayant un Support à Distance Enregistré, la commande est :
Get-HPOVServer | Where-Object{ $_.remoteSupportSettings.remoteSupportCurrentState -eq ‘Registered’ }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
. Get-HPOVServer | Where-Object{$_.remoteSupportSettings.remoteSupportCurrentState -eq "Registered"}<br> Name ServerName Status Power Serial Number Model ROM iLO Server Profile License ---- ---------- ------ ----- ------------- ----- --- --- -------------- ------- monChassis, bay 10 monserveur12 OK On CZ11111111 BL460c Gen10 xxx vy.yy (aa/bb/cc) iLO5 1.cc monserveur12 OneView monChassis, bay 11 monserveur13 OK On CZ22222222 BL460c Gen10 xxx vy.yy (aa/bb/cc) iLO5 1.cc monserveur13 OneView ilo-monserveur1 monserveur1 OK On CZ33333333 DL380 Gen9 xxx vy.yy (aa/bb/cc) iLO4 2.cc No Profile OneViewStandard ilo-monserveur2 monserveur2 OK On CZ44444444 DL380p Gen8 xxx vy.yy (aa/bb/cc) iLO4 2.cc No Profile OneViewStandard ilo-monserveur3 monserveur3 OK On CZ55555555 DL360 Gen10 xxx vy.yy (aa/bb/cc) iLO5 1.cc monserveur3 OneView ilo-monserveur4 monserveur4 OK On CZ66666666 DL385p Gen8 xxx vy.yy (aa/bb/cc) iLO4 2.cc No Profile OneViewStandard |
Pour lister les informations concernant le « Support à Distance » de vos serveurs, lancer la commande :
Get-HPOVServer | Where-Object{$_.remoteSupportSettings.remoteSupportCurrentState -eq ‘Registered’} | Get-HPOVRemoteSupportSetting
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
. Get-HPOVServer | Where-Object{$_.remoteSupportSettings.remoteSupportCurrentState -eq "Registered"} | Get-HPOVRemoteSupportSetting ResourceName SupportEnabled SalesChannelPartner SupportChannelPartner PrimaryContact SecondaryContact ------------ -------------- ------------------- --------------------- -------------- ---------------- monchassis, bay 10 True Hewlett Packard Enterprise Hewlett Packard Enterprise Contact 1 Contact 2 monchassis, bay 11 True Hewlett Packard Enterprise Hewlett Packard Enterprise Contact 1 Contact 2 monserveur1 True Hewlett Packard Enterprise Hewlett Packard Enterprise Contact 1 Contact 2 monserveur2 True Hewlett Packard Enterprise Hewlett Packard Enterprise Contact 1 Contact 2 monserveur3 True Hewlett Packard Enterprise Hewlett Packard Enterprise Contact 1 Contact 2 . |