You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the Get-IntersightNetworkElement cmdlet to filter out all Fabric Interconnects, it appears that the filter only displays 2nd, 3rd, and 4th generation systems. 5th generation Fabric Interconnects are excluded from the filter, but they can be queried directly using the -Name parameter or -moid and will be displayed. Additionally, the bug in the filter seems to not include systems in "intersight managed mode," and primarily displays systems in UCSM mode in Intersight.
Here is a code snippet of the output from running the Get-IntersightNetworkElement cmdlet with the aforementioned filter:
Get-IntersightNetworkElement | Group-Object Model | Select-Object >> @{Name='Model';Expression={$_.Name}},
@{Name='Count';Expression={$_.Count}}
The output displays the number of Fabric Interconnects for each model:
When using the Get-IntersightNetworkElement cmdlet to filter out all Fabric Interconnects, it appears that the filter only displays 2nd, 3rd, and 4th generation systems. 5th generation Fabric Interconnects are excluded from the filter, but they can be queried directly using the -Name parameter or -moid and will be displayed. Additionally, the bug in the filter seems to not include systems in "intersight managed mode," and primarily displays systems in UCSM mode in Intersight.
Here is a code snippet of the output from running the Get-IntersightNetworkElement cmdlet with the aforementioned filter:
Get-IntersightNetworkElement | Group-Object Model | Select-Object >> @{Name='Model';Expression={$_.Name}},
@{Name='Count';Expression={$_.Count}}
The output displays the number of Fabric Interconnects for each model:
UCS-FI-6248UP - 2
UCS-FI-6296UP - 2
UCS-FI-6332-16UP - 52
UCS-FI-6454 - 44
It is important to note that no 5th generation Fabric Interconnects are displayed in this output.
The text was updated successfully, but these errors were encountered: