Skip to content

Commit 18e2761

Browse files
authored
Merge pull request #15820 from MicrosoftDocs/main
9/10/2024 AM Publish
2 parents 330d87b + daed864 commit 18e2761

File tree

4 files changed

+41
-12
lines changed

4 files changed

+41
-12
lines changed

azure-stack/hci/deploy/deployment-arc-register-server-permissions.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Before you begin, make sure you've completed the following prerequisites:
5757
> [!IMPORTANT]
5858
> Run these steps on every Azure Stack HCI server that you intend to cluster.
5959
60-
1. Install the [Arc registration script](https://www.powershellgallery.com/packages/AzSHCI.ARCInstaller) from PSGallery.
60+
<!-- 1. Install the [Arc registration script](https://www.powershellgallery.com/packages/AzSHCI.ARCInstaller) from PSGallery.
6161
6262
# [PowerShell](#tab/powershell)
6363
```powershell
@@ -89,7 +89,7 @@ Before you begin, make sure you've completed the following prerequisites:
8989
[Y] Yes [N] No [S] Suspend [?] Help (default is "Y"): Y
9090
PS C:\Users\SetupUser>
9191
```
92-
---
92+
--- -->
9393
1. Set the parameters. The script takes in the following parameters:
9494

9595
|Parameters |Description |
@@ -135,7 +135,7 @@ Before you begin, make sure you've completed the following prerequisites:
135135
```
136136
137137
---
138-
1. Connect to your Azure account and set the subscription. You'll need to open browser on the client that you're using to connect to the server and open this page: `https://microsoft.com/devicelogin` and enter the provided code in the Azure CLI output to authenticate. Get the access token and account ID for the registration.
138+
2. Connect to your Azure account and set the subscription. You'll need to open browser on the client that you're using to connect to the server and open this page: `https://microsoft.com/devicelogin` and enter the provided code in the Azure CLI output to authenticate. Get the access token and account ID for the registration.
139139
140140
# [PowerShell](#tab/powershell)
141141
@@ -169,7 +169,7 @@ Before you begin, make sure you've completed the following prerequisites:
169169
170170
---
171171
172-
1. Finally run the Arc registration script. The script takes a few minutes to run.
172+
3. Finally run the Arc registration script. The script takes a few minutes to run.
173173
174174
# [PowerShell](#tab/powershell)
175175
@@ -214,7 +214,7 @@ Before you begin, make sure you've completed the following prerequisites:
214214
```
215215
---
216216
217-
1. After the script completes successfully on all the servers, verify that:
217+
4. After the script completes successfully on all the servers, verify that:
218218
219219
220220
1. Your servers are registered with Arc. Go to the Azure portal and then go to the resource group associated with the registration. The servers appear within the specified resource group as **Machine - Azure Arc** type resources.

azure-stack/hci/deploy/deployment-azure-arc-gateway-new-cluster.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Azure Stack HCI requires the Arc agent installation to follow a specific procedu
7878

7979
However, for this Preview, you need to invoke the initialization script by passing the **ArcGatewayID** value. Here's an example of how you should change the initialization script:
8080

81-
```azurecli
81+
```powershell
8282
#Install required PowerShell modules in your node for registration
8383
Install-Module Az.Accounts -RequiredVersion 2.13.2
8484
Install-Module Az.Resources -RequiredVersion 6.12.0
@@ -130,9 +130,12 @@ You can audit the Arc gateway traffic by viewing the gateway router logs.
130130

131131
Follow these steps to view the logs:
132132

133-
1. Run the `azcmagent logs` command.
133+
1. Run the following command:
134+
```azurecli
135+
azcmagent logs
136+
```
134137

135-
1. In the resulting .zip file, view the logs in the *C:\ProgramData\Microsoft\ArcGatewayRouter* folder.
138+
1. In the resulting **.zip** file, view the logs in the `C:\ProgramData\Microsoft\ArcGatewayRouter` folder.
136139

137140

138141
## Next steps

azure-stack/hci/deploy/deployment-install-os.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,7 @@ Follow these steps to configure the operating system using SConfig:
139139
> - Make sure that the local administrator password follows Azure password length and complexity requirements. Use a password that is at least 12 characters long and contains a lowercase character, an uppercase character, a numeral, and a special character.
140140
> - Do not join the servers with the Azure Stack HCI operating system installed, to the Active Directory domain prior to cloud deployment. Cluster nodes are automatically joined to a domain during the [Deployment via Azure portal](./deploy-via-portal.md).
141141
142-
143-
## Install required Windows roles
142+
<!--## Install required Windows roles
144143
145144
Install the Hyper-V role. Run the following command on each server of the cluster:
146145
@@ -150,8 +149,7 @@ Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
150149
151150
Your servers will restart; this takes a few minutes.
152151
153-
You are now ready to register the Azure Stack HCI server with Azure Arc and assign permissions for deployment.
154-
152+
You are now ready to register the Azure Stack HCI server with Azure Arc and assign permissions for deployment. -->
155153

156154
## Next steps
157155

azure-stack/hci/plan/configure-custom-settings-active-directory.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,34 @@ To verify that the DNS record exists, run the following command:
112112
nslookup "machine name"
113113
```
114114

115+
## Disjoint namespace
116+
117+
A disjoint namespace occurs when the primary DNS suffix of one or more domain member computers doesn't match the DNS name of their Active Directory domain. For example, if a computer has a DNS name of corp.contoso.com but is part of an Active Directory domain called na.corp.contoso.com, it's using a disjoint namespace.
118+
119+
Before deploying Azure Stack HCI version 23H2, you must:
120+
121+
- Append the DNS suffix to the management adapter of every node.
122+
- Verify you can resolve the hostname to the FQDN of the Active Directory.
123+
124+
### Example - append the DNS suffix
125+
126+
To append the DNS suffix, run the following command:
127+
128+
```powershell
129+
Set-DnsClient -InterfaceIndex 12 -ConnectionSpecificSuffix "na.corp.contoso.com"
130+
```
131+
132+
### Example - resolve the hostname to the FQDN
133+
134+
To resolve the hostname to the FQDN, run the following command:
135+
136+
```powershell
137+
nslookup node1.na.corp.contoso.com
138+
```
139+
140+
> [!NOTE]
141+
> You cannot use group policies to configure the DNS suffix list with Azure Stack HCI, version 23H2.
142+
115143
## Cluster aware updating (CAU)
116144

117145
Cluster aware updating applies a client access point (Virtual Computer Object) that requires a DNS record.

0 commit comments

Comments
 (0)