分页: 1 / 1
有无检测FC卡WWN信息的工具
发表于 : 2012年 7月 1日 22:33 星期天
由 MUDBOY
Is there any tool/third party software which can display the WWN of the FC cards present in the proliant server for Windows and Linux?
Re: 有无检测FC卡WWN信息的工具
发表于 : 2012年 7月 1日 22:41 星期天
由 爱老虎油
If you are referring to the LOM CNA modules, you should be able to use the One Command tool.
Here is the link for the Windows version:
http://h20566.www2.hp.com/portal/site/h ... erDocument
OneCommand also works for the native Fibre Channel cards from Emulex. QConvergeConsole is available for QLogic products. Both are on hp.com under software and drivers for the respective products.
Re: 有无检测FC卡WWN信息的工具
发表于 : 2012年 7月 1日 22:42 星期天
由 MUDBOY
thanks
What about for Brocade HBA cards or an ALL-IN-ONE tool to show the WWN whatever the card make is?
Re: 有无检测FC卡WWN信息的工具
发表于 : 2012年 7月 1日 22:44 星期天
由 HEUNG
If these are blades, the OA will report what the WWN’s are for all models.
Gen8 iLO will display this information as well.
For Linux, you can can the device files under /proc/scsi/[module_name]/.
Windows, you can use PowerShell (from looking at the Microsoft TechNet ScriptCenter,
http://gallery.technet.microsoft.com/sc ... N-53121140
Get-HBAWin -ComputerName <IP Address> |Format-Table –AutoSize
Get-HBAWIN CMDLET:
代码: 全选
function Get-HBAWin {
param(
[String[]]$ComputerName = $ENV:ComputerName
)
$ComputerName | ForEach-Object {
$Computer = $_
$Namespace = "root\WMI"
Get-WmiObject -class MSFC_FCAdapterHBAAttributes -computername $Computer -namespace $namespace |
ForEach-Object {
$hash=@{
ComputerName = $_.__SERVER
NodeWWN = (($_.NodeWWN) | ForEach-Object {"{0:x}" -f $_}) -join ":"
Active = $_.Active
DriverName = $_.DriverName
DriverVersion = $_.DriverVersion
FirmwareVersion = $_.FirmwareVersion
Model = $_.Model
ModelDescription = $_.ModelDescription
}
New-Object psobject -Property $hash
}#Foreach-Object(Adapter)
}#Foreach-Object(Computer)
}#Get-HBAWin
Re: 有无检测FC卡WWN信息的工具
发表于 : 2012年 7月 2日 22:53 星期一
由 爱老虎油
挺实用的,感谢分享!
Re: 有无检测FC卡WWN信息的工具
发表于 : 2012年 8月 3日 16:44 星期五
由 bb8700
学习了 泶习了