PoshCode Archive  Artifact [725b11a514]

Artifact 725b11a514d265de74490eac04f7a74ae98867692fad78c4d2434594b5ccaa59:

  • File Check-HBA-status.ps1 — part of check-in [ef29bf7056] at 2018-06-10 12:57:01 on branch trunk — VMWARE In a Fibre Channel enviroment i generate an HTML report of LUN visibility. FeedBack welcome (user: Alberto Damiano size: 3841)

# encoding: ascii
# api: powershell
# title: Check HBA status 
# description: VMWARE In a Fibre Channel enviroment i generate an HTML report of LUN visibility. FeedBack welcome
# version: 1.0
# type: function
# author: Alberto Damiano 			
# license: CC0
# function: Generate-Report
# x-poshcode-id: 1412
# x-archived: 2009-10-26T15:25:40
#
#
###########################################################################################
# Title:		Check HBA status 
# Filename:		Check-HBA.ps1
# Created by:	Alberto Damiano 			
# Date:			June 2009				
# Version:   	1.0			
###########################################################################################

# Virtual Center Server FQDN
$VCServerName = "YOUR SERVER"


# Some variables
$CLUSTERS = @()
$portvc="443"


$VC = Connect-VIServer $VCServerName -ErrorAction Stop -port $portvc

$CLUSTERS = Get-Cluster | Select-Object Name

ForEach ($ClusterName in $CLUSTERS)
{

	
	# Generate list of ESX into cluster $ClusterName.Name
	$VMHosts = Get-VMHost -Location $ClusterName.Name | Sort-Object Name

	Function Generate-Report 
	{
		Write-Output "<body>"
		ForEach ($VMHost in $VMHosts)
		{
			$Report = @()
			$ESX = Get-VMHost $VMHost
			get-vmhoststorage -RescanAllHba -VMHost $ESX > $null
			$PROPVMHOST = Get-View $ESX.id
			$storageSystem = Get-View $PROPVMHOST.ConfigManager.StorageSystem
			$VMHBAs = $PROPVMHOST.Config.StorageDevice.ScsiTopology.Adapter
			$lista = $storageSystem.StorageDeviceInfo.MultipathInfo.Lun  
			# Write hostname ESX
			Write-Output "<table><tr class=""Title""><td colspan=""5"">$($VMhost.Name)</td></tr><tr class="Title"><td>LunID  </td><td>Vmhba  </td><td> WWN SAN </td><td>SCSI Target  </td><td>State  </td></tr>"
			
			ForEach ($lun in $lista)
			{
				$lun.Path | %{
					if ($_.Adapter.Contains("FibreChannelHba"))
					{
						$OUT = {} | Select Lunid, Vmhba, wwnt, target, state
						$temp = $lun.id.Split(":")[2]
						$OUT.Lunid = [Convert]::Todecimal($temp)
						$OUT.Vmhba = $_.Name.Split(":")[0]
						$elenco = $storageSystem.StorageDeviceInfo.HostBusAdapter | select Device, PortWorldWideName
						ForEach ($ele in $elenco)
						{
							if ($ele.Device -eq $OUT.Vmhba)
							{
								break
							}
						}
						$wwnhex = "{0:x}" -f $ele.PortWorldWideName
						$OUT.Vmhba = $_.Name.Split(":")[0] + " " + $wwnhex
						$OUT.wwnt = "{0:x}" -f $_.Transport.PortWorldWideName
						$OUT.target = $_.Name.Split(":")[1]
						$OUT.state = $_.PathState
						$Report += $OUT
					}
				}
			}
			$Report = $Report | Sort-Object Lunid
			$old = $Report[1].Lunid
			$flag = $true
			$bg="#C0C0FF"
			Foreach ($rep in $Report) 
			{
			    if ($rep.Lunid -ne $old)
				{
					$flag = !($flag)
					$old = $rep.Lunid
					if ($flag)
					{
						$bg="#C0C0FF"
					}
					else
					{
						$bg="#FFFF66"
					}
				}
				if ($rep.state -like "dead")
				{
					Write-Output "<tr bgcolor=$($bg)><td>$($rep.Lunid)</td><td>$($rep.Vmhba)</td><td>$($rep.wwn)</td><td><center>$($rep.target)</center></td><td class="Error">$($rep.state)</td></tr>" 
				}
				else
				{
					Write-Output "<tr bgcolor=$($bg)><td>$($rep.Lunid)</td><td>$($rep.Vmhba)</td><td>$($rep.wwnt)</td><td><center>$($rep.target)</center></td><td>$($rep.state)</td></tr>" 
				}
			}
			Write-Output "</table>"
			Write-Output "<BR>"
		}
		Write-Output "</body></html>"
	}
	Write-Output "<html><head><title></title><style type=""text/css"">.Error {color:#FF0000;font-weight: bold;}.Title {background: #0077D4;color: #FFFFFF;text-align:center;font-weight: bold;}.Normal {}</style></head>" > "c:\temp\SAN_Path_$($ClusterName.Name).html"

	#Specify the path where to store the HTML output
	
	Generate-Report >> "c:\temp\SAN_Path_$($ClusterName.Name).html"
}