Public/Get-ESXNetworking.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 |
function Get-ESXNetworking { <# .SYNOPSIS Get ESXi Networking Details. .DESCRIPTION Will get Physical Adapters, Virtual Switches, and Port Groups All this can be gathered for a vSphere Cluster, Datacenter or individual ESXi host .NOTES File Name : Get-ESXNetworking.ps1 Author : Edgar Sanchez - @edmsanchez13 Contributor : Ariel Sanchez - @arielsanchezmor Version : 2.4.4 .Link https://github.com/arielsanchezmora/vDocumentation .INPUTS No inputs required .OUTPUTS CSV file Excel file .PARAMETER esxi The name(s) of the vSphere ESXi Host(s) .EXAMPLE Get-ESXNetworking -esxi devvm001.lab.local .PARAMETER cluster The name(s) of the vSphere Cluster(s) .EXAMPLE Get-ESXNetworking -cluster production-cluster .PARAMETER datacenter The name(s) of the vSphere Virtual DataCenter(s) .EXAMPLE Get-ESXNetworking -datacenter vDC001 Get-ESXInventory -datacenter "all vdc" will gather all hosts in vCenter(s). This is the default if no Parameter (-esxi, -cluster, or -datacenter) is specified. .PARAMETER ExportCSV Switch to export all data to CSV file. File is saved to the current user directory from where the script was executed. Use -folderPath parameter to specify a alternate location .EXAMPLE Get-ESXNetworking -cluster production-cluster -ExportCSV .PARAMETER ExportExcel Switch to export all data to Excel file (No need to have Excel Installed). This relies on ImportExcel Module to be installed. ImportExcel Module can be installed directly from the PowerShell Gallery. See https://github.com/dfinke/ImportExcel for more information File is saved to the current user directory from where the script was executed. Use -folderPath parameter to specify a alternate location .EXAMPLE Get-ESXNetworking -cluster production-cluster -ExportExcel .PARAMETER PhysicalAdapters Switch to get Physical Adapter details including uplinks to vswitch and CDP/LLDP Information This is default option that will get processed if no switch parameter is provided. .EXAMPLE Get-ESXNetworking -cluster production-cluster -PhysicalAdapters .PARAMETER VMkernelAdapters Switch to get VMkernel Adapter details including Enabled services .EXAMPLE Get-ESXNetworking -cluster production-cluster -VMkernelAdapters .PARAMETER VirtualSwitches Switch to get Virtual switches details including port groups. .EXAMPLE Get-ESXNetworking -cluster production-cluster -VirtualSwitches .PARAMETER folderPath Specificies an alternate folder path of where the exported file should be saved. .EXAMPLE Get-ESXNetworking -cluster production-cluster -ExportExcel -folderPath C:\temp .PARAMETER PassThru Returns the object to console .EXAMPLE Get-ESXNetworking -esxi devvm001.lab.local -PassThru #> <# ----------------------------------------------------------[Declarations]---------------------------------------------------------- #> [CmdletBinding()] param ( $esxi, $cluster, $datacenter, [switch]$ExportCSV, [switch]$ExportExcel, [switch]$VirtualSwitches, [switch]$VMkernelAdapters, [switch]$PhysicalAdapters, [switch]$PassThru, $folderPath ) $PhysicalAdapterCollection = @() $VMkernelAdapterCollection = @() $VirtualSwitchesCollection = @() $skipCollection = @() $vHostList = @() $date = Get-Date -format s $date = $date -replace ":", "-" $outputFile = "Networking" + $date <# ----------------------------------------------------------[Execution]---------------------------------------------------------- #> <# Query PowerCLI and vDocumentation versions if running Verbose #> if ($VerbosePreference -eq "continue") { Write-Verbose -Message ((Get-Date -Format G) + "`tPowerCLI Version:") Get-Module -Name VMware.* | Select-Object -Property Name, Version | Format-Table -AutoSize Write-Verbose -Message ((Get-Date -Format G) + "`tvDocumentation Version:") Get-Module -Name vDocumentation | Select-Object -Property Name, Version | Format-Table -AutoSize } #END if <# Check for an active connection to a VIServer #> Write-Verbose -Message ((Get-Date -Format G) + "`tValidate connection to a vSphere server") if ($Global:DefaultViServers.Count -gt 0) { Write-Host "`tConnected to $Global:DefaultViServers" -ForegroundColor Green } else { Write-Error -Message "You must be connected to a vSphere server before running this Cmdlet." break } #END if/else <# Validate if a parameter was specified (-esxi, -cluster, or -datacenter) Although all 3 can be specified, only the first is used Example: -esxi "host001" -cluster "test-cluster". -esxi is the first parameter and what will be used. #> Write-Verbose -Message ((Get-Date -Format G) + "`tValidate parameters used") if ([string]::IsNullOrWhiteSpace($esxi) -and [string]::IsNullOrWhiteSpace($cluster) -and [string]::IsNullOrWhiteSpace($datacenter)) { Write-Verbose -Message ((Get-Date -Format G) + "`tA parameter (-esxi, -cluster, -datacenter) was not specified. Will gather all hosts") $datacenter = "all vdc" } #END if <# Gather host list based on parameter used #> Write-Verbose -Message ((Get-Date -Format G) + "`tGather host list") if ([string]::IsNullOrWhiteSpace($esxi)) { Write-Verbose -Message ((Get-Date -Format G) + "`t-esxi parameter is Null or Empty") if ([string]::IsNullOrWhiteSpace($cluster)) { Write-Verbose -Message ((Get-Date -Format G) + "`t-cluster parameter is Null or Empty") if ([string]::IsNullOrWhiteSpace($datacenter)) { Write-Verbose -Message ((Get-Date -Format G) + "`t-datacenter parameter is Null or Empty") } else { Write-Verbose -Message ((Get-Date -Format G) + "`tExecuting Cmdlet using datacenter parameter") if ($datacenter -eq "all vdc") { Write-Host "`tGathering all hosts from the following vCenter(s): " $Global:DefaultViServers $vHostList = Get-VMHost | Sort-Object -Property Name } else { Write-Host "`tGathering host list from the following DataCenter(s): " (@($datacenter) -join ',') foreach ($vDCname in $datacenter) { $tempList = Get-Datacenter -Name $vDCname.Trim() -ErrorAction SilentlyContinue | Get-VMHost if ($tempList) { $vHostList += $tempList | Sort-Object -Property Name } else { Write-Warning -Message "`tDatacenter with name $vDCname was not found in $Global:DefaultViServers" } #END if/else } #END foreach } #END if/else } #END if/else } else { Write-Verbose -Message ((Get-Date -Format G) + "`tExecuting Cmdlet using cluster parameter") Write-Host "`tGathering host list from the following Cluster(s): " (@($cluster) -join ',') foreach ($vClusterName in $cluster) { $tempList = Get-Cluster -Name $vClusterName.Trim() -ErrorAction SilentlyContinue | Get-VMHost if ($tempList) { $vHostList += $tempList | Sort-Object -Property Name } else { Write-Warning -Message "`tCluster with name $vClusterName was not found in $Global:DefaultViServers" } #END if/else } #END foreach } #END if/else } else { Write-Verbose -Message ((Get-Date -Format G) + "`tExecuting Cmdlet using esxi parameter") Write-Host "`tGathering host list..." foreach ($invidualHost in $esxi) { $tempList = Get-VMHost -Name $invidualHost.Trim() -ErrorAction SilentlyContinue if ($tempList) { $vHostList += $tempList | Sort-Object -Property Name } else { Write-Warning -Message "`tESXi host $invidualHost was not found in $Global:DefaultViServers" } #END if/else } #END foreach } #END if/else $tempList = $null <# Validate export switches, folder path and dependencies #> Write-Verbose -Message ((Get-Date -Format G) + "`tValidate export switches and folder path") if ($ExportCSV -or $ExportExcel) { $currentLocation = (Get-Location).Path if ([string]::IsNullOrWhiteSpace($folderPath)) { Write-Verbose -Message ((Get-Date -Format G) + "`t-folderPath parameter is Null or Empty") Write-Warning -Message "`tFolder Path (-folderPath) was not specified for saving exported data. The current location: '$currentLocation' will be used" $outputFile = $currentLocation + "\" + $outputFile } else { if (Test-Path $folderPath) { Write-Verbose -Message ((Get-Date -Format G) + "`t'$folderPath' path found") $lastCharsOfFolderPath = $folderPath.Substring($folderPath.Length - 1) if ($lastCharsOfFolderPath -eq "\" -or $lastCharsOfFolderPath -eq "/") { $outputFile = $folderPath + $outputFile } else { $outputFile = $folderPath + "\" + $outputFile } #END if/else Write-Verbose -Message ((Get-Date -Format G) + "`t$outputFile") } else { Write-Warning -Message "`t'$folderPath' path not found. The current location: '$currentLocation' will be used instead" $outputFile = $currentLocation + "\" + $outputFile } #END if/else } #END if/else } #END if if ($ExportExcel) { if (Get-Module -ListAvailable -Name ImportExcel) { Write-Verbose -Message ((Get-Date -Format G) + "`tImportExcel Module available") } else { Write-Warning -Message "`tImportExcel Module missing. Will export data to CSV file instead" Write-Warning -Message "`tImportExcel Module can be installed directly from the PowerShell Gallery" Write-Warning -Message "`tSee https://github.com/dfinke/ImportExcel for more information" $ExportExcel = $false $ExportCSV = $true } #END if/else } #END if <# Validate that a Cmdlet switch was used. Options are -PhysicalAdapters, -VMkernelAdapters, -VirtualSwitches. By default all are executed unless one is specified. #> Write-Verbose -Message ((Get-Date -Format G) + "`tValidate Cmdlet switches") if ($PhysicalAdapters -or $VMkernelAdapters -or $VirtualSwitches) { Write-Verbose -Message ((Get-Date -Format G) + "`tA Cmdlet switch was specified") } else { Write-Verbose -Message ((Get-Date -Format G) + "`tA Cmdlet switch was not specified") Write-Verbose -Message ((Get-Date -Format G) + "`tWill execute all (-PhysicalAdapters, -VMkernelAdapters, -VirtualSwitches)") $PhysicalAdapters = $true $VMkernelAdapters = $true $VirtualSwitches = $true } #END if/else <# Main code execution #> foreach ($vmhost in $vHostList) { <# Skip if ESXi host is not in a Connected or Maintenance ConnectionState #> Write-Verbose -Message ((Get-Date -Format G) + "`t$vmhost Connection State: " + $vmhost.ConnectionState) if ($vmhost.ConnectionState -eq "Connected" -or $vmhost.ConnectionState -eq "Maintenance") { <# Do nothing - ESXi host is reachable #> } else { <# Use a custom object to keep track of skipped hosts and continue to the next foreach loop #> $skipCollection += [pscustomobject]@{ 'Hostname' = $vmhost.Name 'Connection State' = $vmhost.ConnectionState } #END [PSCustomObject] continue } #END if/else $vmhostView = $vmhost | Get-View $esxcli = Get-EsxCli -VMHost $vmhost -V2 <# Get physical adapter details #> if ($PhysicalAdapters) { Write-Host "`tGathering physical adapter details from $vmhost ..." $vmnics = $vmhost | Get-VMHostNetworkAdapter -Physical | Select-Object -Property Name, Mac, Mtu foreach ($nic in $vmnics) { Write-Verbose -Message ((Get-Date -Format G) + "`tGet device details for: " + $nic.Name) $pciList = $esxcli.hardware.pci.list.Invoke() | Where-Object {$_.VMKernelName -eq $nic.Name} $nicList = $esxcli.network.nic.list.Invoke() | Where-Object {$_.Name -eq $nic.Name} <# Get uplink vSwitch, check standard vSwitch first then Distributed. #> if ($vSwitch = $esxcli.network.vswitch.standard.list.Invoke() | Where-Object {$_.uplinks -contains $nic.Name}) { Write-Verbose -Message ((Get-Date -Format G) + "`tUplinks to vswitch: " + $vSwitch.Name) } else { $vSwitch = $esxcli.network.vswitch.dvs.vmware.list.Invoke() | Where-Object {$_.uplinks -contains $nic.Name} Write-Verbose -Message ((Get-Date -Format G) + "`tUplinks to vswitch: " + $vSwitch.Name) } #END if/else <# Get Device Discovery Protocol CDP/LLDP #> Write-Verbose -Message ((Get-Date -Format G) + "`tGet Device Discovery Protocol for: " + $nic.Name) $networkSystem = $vmhostView.Configmanager.Networksystem $networkView = Get-View -Id $networkSystem $networkViewInfo = $networkView.QueryNetworkHint($nic.Name) if ($networkViewInfo.connectedswitchport -ne $null) { Write-Verbose -Message ((Get-Date -Format G) + "`tDevice Discovery Protocol: CDP") $ddp = "CDP" $ddpExtended = $networkViewInfo.connectedswitchport $ddpDevID = $ddpExtended.DevId $ddpDevIP = $ddpExtended.Address $ddpDevPortId = $ddpExtended.PortId } else { Write-Verbose -Message ((Get-Date -Format G) + "`tCDP not found") if ($networkViewInfo.lldpinfo -ne $null) { Write-Verbose -Message ((Get-Date -Format G) + "`tDevice Discovery Protocol: LLDP") $ddp = "LLDP" $ddpDevID = $networkViewInfo.lldpinfo.Parameter | Where-Object {$_.Key -eq "System Name"} | Select-Object -ExpandProperty Value $ddpDevIP = $networkViewInfo.lldpinfo.Parameter | Where-Object {$_.Key -eq "Management Address"} | Select-Object -ExpandProperty Value $ddpDevPortId = $networkViewInfo.lldpinfo.Portid } else { Write-Verbose -Message ((Get-Date -Format G) + "`tLLDP not found") $ddp = $null $ddpDevID = $null $ddpDevIP = $null $ddpDevPortId = $null } #END if/else } #END if/else <# Use a custom object to store collected data #> $PhysicalAdapterCollection += [PSCustomObject]@{ 'Hostname' = $vmhost.Name 'Name' = $nic.Name 'Slot Description' = $pciList.SlotDescription 'Device' = $nicList.Description 'Duplex' = $nicList.Duplex 'Link' = $nicList.Link 'MAC' = $nic.Mac 'MTU' = $nicList.MTU 'Speed' = $nicList.Speed 'vSwitch' = $vSwitch.Name 'vSwitch MTU' = $vSwitch.MTU 'Discovery Protocol' = $ddp 'Device ID' = $ddpDevID 'Device IP' = $ddpDevIP 'Port' = $ddpDevPortId } #END [PSCustomObject] } #END foreach } #END if <# Get VMkernel adapter details #> if ($VMkernelAdapters) { Write-Host "`tGathering VMkernel adapter details from $vmhost ..." $vmnics = $vmhost | Get-VMHostNetworkAdapter -VMKernel foreach ($nic in $vmnics) { Write-Verbose -Message ((Get-Date -Format G) + "`tGathering details for: " + $nic.Name) <# Get VMkernel adapter enabled services #> $enabledServices = @() if ($nic.VMotionEnabled) { $enabledServices += "vMotion" } #END if if ($nic.FaultToleranceLoggingEnabled) { $enabledServices += "Fault Tolerance logging" } #END if if ($nic.ManagementTrafficEnabled) { $enabledServices += "Management" } #END if if ($nic.VsanTrafficEnabled) { $enabledServices += "vSAN" } #END if <# Get VMkernel adapter associated vSwitch, PortGroup Teaming Policy and vSwitch MTU using Active adapter associated with the VMKernel Port. Test against both Standard and Distributed Switch. #> $interfaceList = $esxcli.network.ip.interface.list.Invoke() | Where-Object {$_.Name -eq $nic.Name} if ($interfaceList.VDSName -eq "N/A") { Write-Verbose -Message ((Get-Date -Format G) + "`tStandard vSwitch: " + $interfaceList.Portset) Write-Verbose -Message ((Get-Date -Format G) + "`tGet PortGroup details for: " + $nic.PortGroupName) $portGroup = Get-VirtualPortGroup -VMhost $vmhost -Name $nic.PortGroupName -Standard -ErrorAction SilentlyContinue $portGroupTeam = $portGroup | Get-NicTeamingPolicy $portVLanId = $portGroup | Select-Object -ExpandProperty VLanId $vSwitch = $esxcli.network.vswitch.standard.list.Invoke(@{vswitchname = $interfaceList.Portset}) $vSwitchName = $interfaceList.Portset $activeAdapters = (@($PortGroupTeam.ActiveNic) -join ',') $standbyAdapters = (@($PortGroupTeam.StandbyNic) -join ',') $unusedAdapters = (@($PortGroupTeam.UnusedNic) -join ',') } else { if ($interfaceList.VDSUUID) { Write-Verbose -Message ((Get-Date -Format G) + "`tDistributed vSwitch: " + $interfaceList.VDSName) Write-Verbose -Message ((Get-Date -Format G) + "`tGet PortGroup details for: " + $nic.PortGroupName) $portGroup = Get-VDPortgroup -Name $nic.PortGroupName -VDSwitch $interfaceList.Portset -ErrorAction SilentlyContinue $portGroupTeam = $portGroup | Get-VDUplinkTeamingPolicy $portVLanId = $portGroup.VlanConfiguration.VlanId $vSwitch = $esxcli.network.vswitch.dvs.vmware.list.Invoke(@{vdsname = $interfaceList.VDSName}) $vSwitchName = $interfaceList.VDSName $activeAdapters = (@($PortGroupTeam.ActiveUplinkPort) -join ',') $standbyAdapters = (@($PortGroupTeam.StandbyUplinkPort) -join ',') $unusedAdapters = (@($PortGroupTeam.UnusedUplinkPort) -join ',') } else { $vSwitch = $esxcli.network.vswitch.dvs.vmware.list.Invoke() | Where-Object {$_.VDSID -eq $interfaceList.VDSName} Write-Verbose -Message ((Get-Date -Format G) + "`t3rd Party Distributed vSwitch: " + $vSwitch.Name) $portVLanId = $null $vSwitchName = $vSwitch.Name $activeAdapters = $null $standbyAdapters = $null $unusedAdapters = $null } #END if/else } #END if/else <# Get TCP/IP Stack details #> Write-Verbose -Message ((Get-Date -Format G) + "`tGet VMkernel TCP/IP Stack details...") $netStackInstance = $vmhostView.Config.Network.NetStackInstance | Where-Object {$_.key -eq $interfaceList.NetstackInstance} $vmkGateway = $netStackInstance.IpRouteConfig.DefaultGateway $dnsAddress = $netStackInstance.DnsConfig.Address <# Use a custom object to store collected data #> $VMkernelAdapterCollection += [PSCustomObject]@{ 'Hostname' = $vmhost.Name 'Name' = $nic.Name 'MAC' = $nic.Mac 'MTU' = $nic.MTU 'IP' = $nic.IP 'Subnet Mask' = $nic.SubnetMask 'TCP/IP Stack' = $interfaceList.NetstackInstance 'Default Gateway' = $vmkGateway 'DNS' = (@($dnsAddress) -join ',') 'PortGroup Name' = $nic.PortGroupName 'VLAN ID' = $portVLanId 'Enabled Services' = (@($enabledServices) -join ',') 'vSwitch' = $vSwitchName 'vSwitch MTU' = $vSwitch.MTU 'Active adapters' = $activeAdapters 'Standby adapters' = $standbyAdapters 'Unused adapters' = $unusedAdapters } #END [PSCustomObject] } #END foreach } #END if <# Get virtual vSwitches details #> if ($VirtualSwitches) { Write-Host "`tGathering virtual vSwitches details from $vmhost ..." <# Get standard switch details #> $StdvSwitch = Get-VirtualSwitch -VMHost $vmhost -Standard foreach ($vSwitch in $StdvSwitch) { Write-Verbose -Message ((Get-Date -Format G) + "`tStandard vSwitch: " + $vSwitch.Name) <# Get PortGroup details, Security Policy, and Teaming Policy #> if ($portGroups = $vSwitch | Get-VirtualPortGroup) { foreach ($port in $portGroups) { Write-Verbose -Message ((Get-Date -Format G) + "`tGet Port Group details for: " + $port.Name) $portGroupTeam = $port | Get-NicTeamingPolicy $portGroupSecurity = $port | Get-SecurityPolicy $portGroupPolicy = @() if ($portGroupSecurity.AllowPromiscuous) { $portGroupPolicy += "Accept" } else { $portGroupPolicy += "Reject" } #END if/else if ($portGroupSecurity.MacChanges) { $portGroupPolicy += "Accept" } else { $portGroupPolicy += "Reject" } #END if/else if ($portGroupSecurity.ForgedTransmits) { $portGroupPolicy += "Accept" } else { $portGroupPolicy += "Reject" } #END if/else <# Use a custom object to store collected data #> $VirtualSwitchesCollection += [PSCustomObject]@{ 'Hostname' = $vmhost.Name 'Type' = "Standard" 'Version' = $null 'Name' = $vSwitch.Name 'Uplink/ConnectedAdapters' = (@($vSwitch.Nic) -join ',') 'PortGroup' = $port.Name 'VLAN ID' = $port.VLanId 'Active adapters' = (@($PortGroupTeam.ActiveNic) -join ',') 'Standby adapters' = (@($PortGroupTeam.StandbyNic) -join ',') 'Unused adapters' = (@($PortGroupTeam.UnusedNic) -join ',') 'Security Promiscuous/MacChanges/ForgedTransmits' = (@($portGroupPolicy) -join '/') } #END [PSCustomObject] } #END foreach } else { <# Use a custom object to store collected data #> $VirtualSwitchesCollection += [PSCustomObject]@{ 'Hostname' = $vmhost.Name 'Type' = "Standard" 'Version' = $null 'Name' = $vSwitch.Name 'Uplink/ConnectedAdapters' = (@($vSwitch.Nic) -join ',') 'PortGroup' = $null 'VLAN ID' = $null 'Active adapters' = $null 'Standby adapters' = $null 'Unused adapters' = $null 'Security Promiscuous/MacChanges/ForgedTransmits' = $null } #END [PSCustomObject] } #END if/else } #END foreach <# Get distributed vSwitch details #> $dVSwitch = Get-VDSwitch -VMHost $vmhost foreach ($vSwitch in $dVSwitch) { if ($vSwitch.Vendor -match "VMware") { Write-Verbose -Message ((Get-Date -Format G) + "`tDistributed vSwitch: " + $vSwitch.Name) <# Get PortGroup details, Security Policy, and Teaming Policy #> $portGroups = $vSwitch | Get-VDPortgroup $vSwitchUplink = @() if ($portGroups) { <# Get distributed switch Uplinks #> $vSwitchUplink = $vSwitch | Get-VDPort -Uplink $uplinkConnected = @() foreach ($uplink in $vSwitchUplink) { $uplinkConnected += $uplink.Name + "," + $uplink.ConnectedEntity } #END foreach foreach ($port in $portGroups | Where-Object {!$_.IsUplink}) { Write-Verbose -Message ((Get-Date -Format G) + "`tGet Port Group details for: " + $port.Name) $portGroupTeam = $port | Get-VDUplinkTeamingPolicy $portGroupSecurity = $port | Get-VDSecurityPolicy $portGroupPolicy = @() if ($portGroupSecurity.AllowPromiscuous) { $portGroupPolicy += "Accept" } else { $portGroupPolicy += "Reject" } #END if/else if ($portGroupSecurity.MacChanges) { $portGroupPolicy += "Accept" } else { $portGroupPolicy += "Reject" } #END if/else if ($portGroupSecurity.ForgedTransmits) { $portGroupPolicy += "Accept" } else { $portGroupPolicy += "Reject" } #END if/else <# Use a custom object to store collected data #> $VirtualSwitchesCollection += [PSCustomObject]@{ 'Hostname' = $vmhost.Name 'Type' = "Distributed" 'Version' = $vSwitch.Version 'Name' = $vSwitch.Name 'Uplink/ConnectedAdapters' = (@($uplinkConnected) -join '/') 'PortGroup' = $port.Name 'VLAN ID' = $port.VlanConfiguration.VlanId 'Active adapters' = (@($PortGroupTeam.ActiveUplinkPort) -join ',') 'Standby adapters' = (@($PortGroupTeam.StandbyUplinkPort) -join ',') 'Unused adapters' = (@($PortGroupTeam.UnusedUplinkPort) -join ',') 'Security Promiscuous/MacChanges/ForgedTransmits' = (@($portGroupPolicy) -join '/') } #END [PSCustomObject] } #END foreach } else { <# Use a custom object to store collected data #> $VirtualSwitchesCollection += [PSCustomObject]@{ 'Hostname' = $vmhost.Name 'Type' = "Distributed" 'Version' = $vSwitch.Version 'Name' = $vSwitch.Name 'Uplink/ConnectedAdapters' = (@($uplinkConnected) -join '/') 'PortGroup' = $port.Name 'VLAN ID' = $port.VlanConfiguration.VlanId 'Active adapters' = (@($PortGroupTeam.ActiveUplinkPort) -join ',') 'Standby adapters' = (@($PortGroupTeam.StandbyUplinkPort) -join ',') 'Unused adapters' = (@($PortGroupTeam.UnusedUplinkPort) -join ',') 'Security Promiscuous/MacChanges/ForgedTransmits' = (@($portGroupPolicy) -join '/') } #END [PSCustomObject] } #END if/else } else { Write-Verbose -Message ((Get-Date -Format G) + "`t3rd Party distributed vSwitch: " + $vSwitch.Name) $ThirdPartyVirtualSwitchesCollection = @() $vSwitchView = $vSwitch | Get-View $vSwitchUplink = $esxcli.network.vswitch.dvs.vmware.list.Invoke() | Where-Object {$_.Name -eq $vSwitch.Name} $portGroups = $vSwitch | Get-VDPortgroup | Where-Object {$_.IsUplink -eq $false} | Select-Object -Property Name <# Use a custom object to store collected data #> $ThirdPartyVirtualSwitchesCollection += [PSCustomObject]@{ 'Hostname' = $vmhost.Name 'Type' = "Distributed" 'Version' = $vSwitch.Version 'Build' = $vSwitchView.Summary.ProductInfo.Build 'Name' = $vSwitch.Name 'Vendor' = $vSwitchView.Summary.ProductInfo.Vendor 'Model' = $vSwitchView.Summary.ProductInfo.Name 'Bundle ID' = $vSwitchView.Summary.ProductInfo.BundleId 'Bundle URL' = $vSwitchView.Summary.ProductInfo.BundleUrl 'MTU' = $vSwitchUplink.MTU 'Uplinks' = (@($vSwitchUplink.uplinks) -join ',') 'PortGroups' = (@($portGroups.Name) -join ',') } #END [PSCustomObject] } #END if/else } #END foreach } #END if } #END foreach Write-Verbose -Message ((Get-Date -Format G) + "`tMain code execution completed") <# Display skipped hosts and their connection status #> If ($skipCollection) { Write-Warning -Message "`tCheck Connection State or Host name " Write-Warning -Message "`tSkipped hosts: " $skipCollection | Format-Table -AutoSize } #END if <# Validate output arrays #> if ($PhysicalAdapterCollection -or $VMkernelAdapterCollection -or $VirtualSwitchesCollection -or $ThirdPartyVirtualSwitchesCollection) { Write-Verbose -Message ((Get-Date -Format G) + "`tInformation gathered") } else { Write-Verbose -Message ((Get-Date -Format G) + "`tNo information gathered") } #END if/else <# Output to screen Export data to CSV, Excel #> if ($PhysicalAdapterCollection) { Write-Host "`n" "ESXi Physical Adapters:" -ForegroundColor Green if ($ExportCSV) { $PhysicalAdapterCollection | Export-Csv ($outputFile + "PhysicalAdapters.csv") -NoTypeInformation Write-Host "`tData exported to" ($outputFile + "PhysicalAdapters.csv") "file" -ForegroundColor Green } elseif ($ExportExcel) { $PhysicalAdapterCollection | Export-Excel ($outputFile + ".xlsx") -WorkSheetname Physical_Adapters -NoNumberConversion * -AutoSize -BoldTopRow Write-Host "`tData exported to" ($outputFile + ".xlsx") "file" -ForegroundColor Green } elseif ($PassThru) { $PhysicalAdapterCollection } else { $PhysicalAdapterCollection | Format-List }#END if/else } #END if if ($VMkernelAdapterCollection) { Write-Host "`n" "ESXi VMkernel Adapters:" -ForegroundColor Green if ($ExportCSV) { $VMkernelAdapterCollection | Export-Csv ($outputFile + "VMkernelAdapters.csv") -NoTypeInformation Write-Host "`tData exported to" ($outputFile + "VMkernelAdapters.csv") "file" -ForegroundColor Green } elseif ($ExportExcel) { $VMkernelAdapterCollection | Export-Excel ($outputFile + ".xlsx") -WorkSheetname VMkernel_Adapters -NoNumberConversion * -AutoSize -BoldTopRow Write-Host "`tData exported to" ($outputFile + ".xlsx") "file" -ForegroundColor Green } elseif ($PassThru) { $VMkernelAdapterCollection } else { $VMkernelAdapterCollection | Format-List } #END if/else } #END if if ($VirtualSwitchesCollection) { Write-Host "`n" "ESXi Virtual Switches:" -ForegroundColor Green if ($ExportCSV) { $VirtualSwitchesCollection | Export-Csv ($outputFile + "VirtualSwitches.csv") -Force -NoTypeInformation Write-Host "`tData exported to" ($outputFile + "VirtualSwitches.csv") "file" -ForegroundColor Green } elseif ($ExportExcel) { $VirtualSwitchesCollection | Export-Excel ($outputFile + ".xlsx") -WorkSheetname Virtual_Switches -NoNumberConversion * -AutoSize -BoldTopRow Write-Host "`tData exported to" ($outputFile + ".xlsx") "file" -ForegroundColor Green } elseif ($PassThru) { $VirtualSwitchesCollection } else { $VirtualSwitchesCollection | Format-List } #END if/else } #END if if ($ThirdPartyVirtualSwitchesCollection) { Write-Host "`n" "ESXi 3rd party Virtual Switches:" -ForegroundColor Green if ($ExportCSV) { $ThirdPartyVirtualSwitchesCollection | Export-Csv ($outputFile + "3rdPartyvSwitches.csv") -Force -NoTypeInformation Write-Host "`tData exported to" ($outputFile + "3rdPartyvSwitches.csv") "file" -ForegroundColor Green } elseif ($ExportExcel) { $ThirdPartyVirtualSwitchesCollection | Export-Excel ($outputFile + ".xlsx") -WorkSheetname 3rdParty_vSwitches -NoNumberConversion * -BoldTopRow Write-Host "`tData exported to" ($outputFile + ".xlsx") "file" -ForegroundColor Green } elseif ($PassThru) { $ThirdPartyVirtualSwitchesCollectionn } else { $ThirdPartyVirtualSwitchesCollection | Format-List } #END if/else } #END if } #END function |