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
Write-Host"[****NEEDS ATTENTION****] ESXi 7.0U3 or later is required for this script to assess VMware VVols readiness."-ForegroundColor Red
407
422
add-content$logfile"[****NEEDS ATTENTION****] ESXi 7.0U3 or later is required for this script to assess VMware VVols readiness."
408
423
}
409
424
else
@@ -421,7 +436,8 @@ foreach ($esx in $ESXHosts)
421
436
$ntpServer=Get-VMHostNtpServer-VMHost $esx
422
437
if ($ntpServer-eq$null)
423
438
{
424
-
Add-Content$logfile"[****NEEDS ATTENTION****] NTP server for this ESXi host is empty. Configure an NTP server before proceeding with VVols."
439
+
Write-Host"[****NEEDS ATTENTION****] NTP server for this ESXi host is empty. Configure an NTP server before proceeding with VVols."-BackgroundColor Red
440
+
Add-Content$logfile"[****NEEDS ATTENTION****] NTP server for this ESXi host is empty. Configure an NTP server before proceeding with VVols."
425
441
}
426
442
else
427
443
{
@@ -449,6 +465,7 @@ else
449
465
450
466
if ($ntpSettings."policy"-contains"off")
451
467
{
468
+
Write-Host"[****NEEDS ATTENTION****] NTP daemon is not enabled. Enable the service in the ESXi host configuration."-BackgroundColor Red
452
469
Add-Content$logfile"[****NEEDS ATTENTION****] NTP daemon is not enabled. Enable the service in the ESXi host configuration."
453
470
}
454
471
else
@@ -462,6 +479,7 @@ else
462
479
}
463
480
else
464
481
{
482
+
Write-Host"[****NEEDS ATTENTION****] NTP daemon is not running."-BackgroundColor Red
465
483
Add-Content$logfile"[****NEEDS ATTENTION****] NTP daemon is not running."
466
484
}
467
485
}
@@ -489,6 +507,12 @@ foreach ($provider in $storageProviders) {
Write-Host"[****NEEDS ATTENTION****] FlashArray does not have an NTP server configured."-BackgroundColor Red
505
530
Add-Content$logfile"[****NEEDS ATTENTION****] FlashArray does not have an NTP server configured."
506
531
}
507
532
else
@@ -511,6 +536,7 @@ else
511
536
512
537
if (!$flashArrayNTP.Success)
513
538
{
539
+
Write-Host"[****NEEDS ATTENTION****] Could not communicate with an NTP server from this FlashArray. Check that it is valid and accessible."-BackgroundColor Red
514
540
Add-Content$logfile"[****NEEDS ATTENTION****] Could not communicate with an NTP server from this FlashArray. Check that it is valid and accessible."
515
541
516
542
}
@@ -530,7 +556,8 @@ if ($Flasharray.Version -ge [Version]"6.5")
530
556
Add-Content$logfile"Purity version supports VVols."
531
557
}
532
558
else
533
-
{
559
+
{
560
+
Write-Host"[****NEEDS ATTENTION****] Purity version not recommended for VVols. Contact Pure Storage support to upgrade to Purity version 5.3.6 or later."-BackgroundColor Red
534
561
Add-Content$logfile"[****NEEDS ATTENTION****] Purity version not recommended for VVols. Contact Pure Storage support to upgrade to Purity version 5.3.6 or later."
$Interfaces=Get-Pfa2NetworkInterface-array $DefaultFlashArray-Filter "services='management' and name='ct*'and enabled='true'"
544
572
$i=0
545
573
foreach ($interfacein$interfaces)
546
574
{
@@ -553,6 +581,7 @@ foreach ($interface in $interfaces)
553
581
554
582
if (!$testNetConnection)
555
583
{
584
+
Write-Host"[****NEEDS ATTENTION****] Could not reach FlashArray management port $($interface.name), IP: $($interfaces[$i].eth.address) on TCP port 8084."-BackgroundColor Red
556
585
add-content$logfile"[****NEEDS ATTENTION****] Could not reach FlashArray management port $($interface.name), IP: $($interfaces[$i].eth.address) on TCP port 8084."
0 commit comments