Skip to content

Commit cec6256

Browse files
ArcGwUpdates2411.1
1 parent d533f78 commit cec6256

File tree

3 files changed

+7
-41
lines changed

3 files changed

+7
-41
lines changed

azure-local/deploy/deployment-azure-arc-gateway-configure-manually.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.service: azure-stack-hci
1010

1111
# Configure Arc proxy manually for Azure gateway on Azure Local (preview)
1212

13-
Applies to: Azure Local, version 23H2, release 2408, 2408.1, 2408.2, and 2411
13+
Applies to: Azure Local, version 23H2, release 2408, 2408.1, 2408.2, 2411 and 2411.1
1414

1515
After creating the Arc gateway resource in your Azure subscription, you can enable the new Arc gateway preview features. This article details how to manually configure the Arc proxy before Arc registration.
1616

azure-local/deploy/deployment-azure-arc-gateway-configure-via-script.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.service: azure-stack-hci
1010

1111
# Configure Arc proxy via registration script for Azure gateway on Azure Local (preview)
1212

13-
Applies to: Azure Local, version 23H2, release 2408, 2408.1, 2408.2, and 2411
13+
Applies to: Azure Local, version 23H2, release 2408, 2408.1, 2408.2, 2411 and 2411.1
1414

1515
After creating the Arc gateway resource in your Azure subscription, you can enable the new Arc gateway preview features. This article details how to configure the Arc proxy before Arc registration using a registration script for the Arc gateway on Azure Local.
1616

azure-local/deploy/deployment-azure-arc-gateway-use-without-proxy.md

Lines changed: 5 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.service: azure-stack-hci
1010

1111
# Use Azure Arc gateway without a proxy on Azure Local (preview)
1212

13-
Applies to: Azure Local, version 23H2, release 2408, 2408.1, 2408.2, and 2411
13+
Applies to: Azure Local, version 23H2, release 2411.1 and later
1414

1515
After creating the Arc gateway resource in your Azure subscription, you can enable the new Arc gateway preview features on your Azure Local. This article details how to use Azure gateway for Azure Local instances without a proxy.
1616

@@ -20,75 +20,41 @@ After creating the Arc gateway resource in your Azure subscription, you can enab
2020

2121
Make sure the following prerequisites are met before proceeding:
2222

23-
- You’ve access to an Azure Local instance running version 23H2.
23+
- You’ve access to an Azure Local instance running version 23H2, release 2411.1. Prior versions do not support this scenario.
2424

2525
- An Arc gateway resource created in the same subscription as used to deploy Azure Local. For more information, see [Create the Arc gateway resource in Azure](deployment-azure-arc-gateway-overview.md#create-the-arc-gateway-resource-in-azure).
2626

27-
> [!Warning]
28-
> For Arc gateway deployments without proxy, the standard ISO OS image is required and is available at https://aka.ms/PVenEREWEEW. Do not use the ISO image available in Azure portal for this scenario.
29-
3027
## Run the initialization script
3128

32-
To use the Arc gateway feature for Azure Local systems without a proxy, use the `ProxyBypassList` parameter to specify traffic that shouldn't route through the Arc gateway. Create the bypass list according to this article.
29+
To use the Arc gateway feature for Azure Local systems without a proxy, only use the `ArcGatewayID` parameter.
3330

34-
Run the initialization script as follows. All other instructions remain the same as listed in [Configure the proxy using the Arc registration script](deployment-azure-arc-gateway-configure-via-script.md).
31+
Run the initialization script as follows.
3532

3633
```azurecli
37-
#Install required PowerShell modules on your machine for registration.
38-
39-
Install-Module Az.Accounts -RequiredVersion 2.13.2
40-
41-
Install-Module Az.Resources -RequiredVersion 6.12.0
42-
43-
Install-Module Az.ConnectedMachine -RequiredVersion 0.5.2
44-
45-
#Install Arc registration script from PSGallery
46-
47-
Install-Module AzsHCI.ARCinstaller
4834
4935
#Define the subscription where you want to register your server as Arc device.
50-
5136
$Subscription = "yoursubscription"
5237
5338
#Define the resource group where you want to register your server as Arc device.
54-
5539
$RG = "yourresourcegroupname"
5640
5741
#Define the tenant you will use to register your server as Arc device.
58-
5942
$Tenant = "yourtenant"
6043
6144
#Define the Arc gateway resource ID from Azure
62-
6345
$ArcgwId = "/subscriptions/yourarcgatewayid/resourceGroups/yourresourcegroupname/providers/Microsoft.HybridCompute/gateways/yourarcgatewayname"
6446
65-
#Define the bypass list for the proxy. Use semicolon to separate each item from the list.
66-
67-
# Use "localhost" instead of <local>
68-
# Use specific IPs such as 127.0.0.1 without mask
69-
# Use * for subnets allowlisting. 192.168.1.* for /24 exclusions. Use 192.168.*.
70-
* for /16 exclusions.
71-
# Append * for domain names exclusions like *.contoso.com
72-
# DO NOT INCLUDE .svc on the list. The registration script takes care of Environment Variables configuration.
73-
74-
$ProxyBypassList = "localhost;127.0.0.1;*.contoso.com;machine1;machine2;machine3;machine4;machine5;192.168.*.*;AzureLocal-1"
75-
7647
#Connect to your Azure account and Subscription
77-
7848
Connect-AzAccount -SubscriptionId $Subscription -TenantId $Tenant -DeviceCode
7949
8050
#Get the Access Token and Account ID for the registration
81-
8251
$ARMtoken = (Get-AzAccessToken).Token
8352
8453
#Get the Account ID for the registration
85-
8654
$id = (Get-AzContext).Account.Id
8755
8856
#Invoke the registration script with Proxy and ArcgatewayID
89-
90-
Invoke-AzStackHciArcInitialization -SubscriptionID $Subscription -ResourceGroup
91-
$RG -TenantID $Tenant -Region australiaeast -Cloud "AzureCloud" -ArmAccessToken $ARMtoken -AccountID $id -ArcGatewayID $ArcgwId -ProxyBypass $ProxyBypassList
57+
Invoke-AzStackHciArcInitialization -SubscriptionID $Subscription -ResourceGroup $RG -TenantID $Tenant -Region australiaeast -Cloud "AzureCloud" -ArmAccessToken $ARMtoken -AccountID $id -ArcGatewayID $ArcgwId
9258
```
9359

9460
## Next steps

0 commit comments

Comments
 (0)