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
Copy file name to clipboardExpand all lines: azure-local/manage/use-environment-checker.md
+54-31Lines changed: 54 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ author: alkohli
5
5
ms.author: alkohli
6
6
ms.topic: how-to
7
7
ms.service: azure-stack-hci
8
-
ms.date: 10/29/2024
8
+
ms.date: 12/27/2024
9
9
---
10
10
11
11
# Evaluate the deployment readiness of your environment for Azure Local, version 23H2
@@ -406,46 +406,69 @@ To remediate the blocking issues in this output, open the Active Directory tool
406
406
407
407
### [Network](#tab/network)
408
408
409
-
It is possible that the IP addresses allocated to Azure Local may already be active on the network. The network validator validates your network infrastructure for valid IP ranges reserved for deployment. It attempts to ping and connect to WinRM and SSH ports to ensure there's no active host using the IP address from the reserved IP range.
409
+
It is possible that the IP addresses allocated to Azure Local may already be active on the network. The network validator validates your network infrastructure for valid IP ranges reserved for deployment. It attempts to ping and connect to WinRM and SSH ports to ensure there's no active host using the IP address from the reserved IP range.
410
410
411
-
You provide the network IP range reserved for Azure Local deployment as part of the answer file JSON, which you can use during network validation. Or, you can manually provide the starting and ending IP addresses when running the validator cmdlet.
411
+
Network validator also checks storage connection, adapter driver readiness, and other host network configuration readiness.
412
412
413
-
### Run the network validator
414
-
415
-
To run the network validator locally on the Azure Local machine node, the workstation, or the staging server with the answer file, follow these steps.
You provide the answer file JSON as the input for network validator cmdlet call. Or you can manually provide the individual parameters when running the validator cmdlet.
431
414
432
-
### Network validator output
415
+
> [!NOTE]
416
+
> You must run the network validator on the final hardware that you want to use for the Azure local instance deployment.
433
417
434
-
The following samples are the output from successful and unsuccessful runs of the network validator.
418
+
### Run the network validator
435
419
436
-
To learn more about different sections in the readiness check report, see [Understand readiness check report](#understand-readiness-check-report).
420
+
To run the network validator locally on the Azure Local node with the answer file, use the following commands:
437
421
438
-
**Sample output: Successful test**
422
+
```powershell
423
+
$allServers = "<ARRAY OF SERVERS' IP>" # you need to use IP for the connection
The following sample is the output from a successful run of the network validator. The output indicates no active host is using an IP address from the reserved IP range.
436
+
To run the network validator locally on the Azure Local node using individual parameters, use the following commands:
441
437
442
-
:::image type="content" source="./media/use-environment-checker/network-validator-sample-passed.png" alt-text="Screenshot of a passed report after running the network validator." lightbox="./media/use-environment-checker/network-validator-sample-passed.png":::
438
+
```powershell
439
+
$answerFilePath = "<ANSWERFILELOCATION>"
440
+
$managementSubnetCIDR = "<CIDR string for management subnet>"
Here's a sample output of an unsuccessful run of the network validator. The failure occurs because the network adapter has two IP addresses, when it should have only one.
445
468
446
-
The following sample is the output from a failed run of the network validator. This output shows two active hosts are using IP address from the reserved IP range.
469
+
:::image type="content" source="./media/use-environment-checker/network-validator-sample-failed.png" alt-text="Screenshot of a failed report after running the network validator." lightbox="./media/use-environment-checker/network-validator-sample-failed.png":::
447
470
448
-
:::image type="content" source="./media/use-environment-checker/network-validator-sample-failed.png" alt-text="Screenshot of a failed report after running the network validator." lightbox="./media/use-environment-checker/network-validator-sample-failed.png":::
471
+
To learn more about different sections in the readiness check report, see [Understand readiness check report](#understand-readiness-check-report).
449
472
450
473
### [Arc integration](#tab/arc-integration)
451
474
@@ -517,7 +540,7 @@ The information displayed on each readiness check report varies depending on the
517
540
|**Diagnostics**| Displays the result of the diagnostic tests. For example, the health and availability of a DNS server. It also shows what information the validator collects for diagnostic purposes, such as WinHttp, IE proxy, and environment variable proxy settings. | Connectivity validator report|
518
541
| Hardware | Displays the health status of all the physical machines and their hardware components. For information on the tests performed on each hardware, see the table under the "Hardware" tab in the [Run readiness checks](#run-readiness-checks) section. | Hardware validator report|
519
542
|**AD OU Diagnostics**| Displays the result of the Active Directory organization unit test. Displays if the specified organizational unit exists and contains proper sub-organizational units. | Active Directory validator report|
520
-
| Network range test | Displays the result of the network range test. If the test fails, it displays the IP addresses that belong to the reserved IP range. | Network validator report |
543
+
| Network test | Displays the result of the network test. If the test fails, it displays the results and corresponding remediations. | Network validator report |
521
544
|**Summary**| Lists the count of successful and failed tests. Failed test results are expanded to show the failure details under **Needs Remediation**.| All reports |
522
545
|**Remediation**| Displays only if a test fails. Provides a link to the article that provides guidance on how to remediate the issue. | All reports |
523
546
|**Log location (contains PII)**| Provides the path where the log file is saved. The default path is:<br><br>- `$HOME\.AzStackHci\AzStackHciEnvironmentChecker.log` when you run the Environment Checker in a standalone mode.<br>- `C:\CloudDeployment\Logs` when the Environment Checker is run as part of the deployment process.<br><br> Each run of the validator overwrites the existing file.| All reports |
0 commit comments