有无检测FC卡WWN信息的工具
版主: xyevolve
版面规则
1. 本版是定位于惠普服务器的技术讨论区。
2. 本版鼓励发帖共同讨论技术问题,不鼓励站内信件私下交流,独知知不如众知知。
3. 本版允许转贴或引用他人的作品,但必须声明原作者信息。
4. 本版禁止发表出售、求购、或其他非技术讨论等帖子。
5. 本版禁止灌水,包括但不限于任何与所讨论主题无关的回复,无意义字符,直接复制其他回复等。
6. 本站附件禁止用于商业目的,请在下载后24小时内删除,本站不对其造成的结果负任何责任。
1. 本版是定位于惠普服务器的技术讨论区。
2. 本版鼓励发帖共同讨论技术问题,不鼓励站内信件私下交流,独知知不如众知知。
3. 本版允许转贴或引用他人的作品,但必须声明原作者信息。
4. 本版禁止发表出售、求购、或其他非技术讨论等帖子。
5. 本版禁止灌水,包括但不限于任何与所讨论主题无关的回复,无意义字符,直接复制其他回复等。
6. 本站附件禁止用于商业目的,请在下载后24小时内删除,本站不对其造成的结果负任何责任。
- MUDBOY
- 创始人
- 帖子: 3882
- 注册时间: 2010年 12月 28日 21:17 星期二
有无检测FC卡WWN信息的工具
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?
-
- 注册用户
- 帖子: 278
- 注册时间: 2011年 6月 17日 21:31 星期五
Re: 有无检测FC卡WWN信息的工具
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.
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.
- MUDBOY
- 创始人
- 帖子: 3882
- 注册时间: 2010年 12月 28日 21:17 星期二
Re: 有无检测FC卡WWN信息的工具
thanks
What about for Brocade HBA cards or an ALL-IN-ONE tool to show the WWN whatever the card make is?
What about for Brocade HBA cards or an ALL-IN-ONE tool to show the WWN whatever the card make is?
-
- 荣誉版主
- 帖子: 229
- 注册时间: 2011年 1月 26日 23:31 星期三
Re: 有无检测FC卡WWN信息的工具
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:
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