« Back to Technical Discussions

Get Open Slots in Chassis via Powertool

Combination View Flat View Tree View
Threads [ Previous | Next ]
Hi All,
 
I have an environment consisiting of 20+ chassis ... I'd like to be able to get the number of open blade slots on each of these.
 
I'm sure there has to be a command i can put together for this.
 
Any ideas?
 
Thanks,

JD

Hi All,
 
I have an environment consisiting of 20+ chassis ... I'd like to be able to get the number of open blade slots on each of these.
 
I'm sure there has to be a command i can put together for this.
 
Any ideas?
 
Thanks,

JD

Hi JD,
 
Something like this should work
 

PS C:\Users\John McDonough\Documents> Get-UcsFabricComputeSlotEp -Presence empty | Select-Object dn,chassisId,Rn
 
Dn                                      ChassisId                               Rn
--                                      ---------                               --
fabric/server/chassis-1/slot-5          1                                       slot-5
fabric/server/chassis-1/slot-6          1                                       slot-6
fabric/server/chassis-1/slot-7          1                                       slot-7
fabric/server/chassis-1/slot-8          1                                       slot-8




Regards,
John

Thanks, John.

This is exactly what i needed.

JD