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
+52-31Lines changed: 52 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/26/2024
9
9
---
10
10
11
11
# Evaluate the deployment readiness of your environment for Azure Local, version 23H2
@@ -406,46 +406,67 @@ 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
+
The IP addresses allocated to Azure Local might already be in use on the network. The network validator checks your network infrastructure to ensure the IP ranges reserved for deployment are valid. 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. It also checks storage connection, adapter driver readiness, and other host network configuration readiness.
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
+
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 individual parameters when running the validator cmdlet.
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.
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.
434
+
To run the network validator locally on the Azure Local node using individual parameters, use the following commands:
441
435
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":::
436
+
```powershell
437
+
$answerFilePath = "<ANSWERFILELOCATION>"
438
+
$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
466
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.
467
+
:::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
468
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":::
469
+
To learn more about different sections in the readiness check report, see [Understand readiness check report](#understand-readiness-check-report).
0 commit comments