Skip to content

Commit 54c3f5c

Browse files
author
Tanu Balla
authored
make v6 ga
1 parent c176a4c commit 54c3f5c

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

articles/expressroute/expressroute-howto-set-global-reach.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ Before you start configuration, confirm the following:
2525
* Azure private peering is configured on your ExpressRoute circuits.
2626
* If you want to run PowerShell locally, verify that the latest version of Azure PowerShell is installed on your computer.
2727

28-
> [!NOTE]
29-
> Global Reach does **not** support configuration updates at this time. This means that if you create a Global Reach connection using the following instructions, you must delete and recreate the connection with any configuration updates. Attempting to update an existing Global Reach connection will put your ExpressRoute circuit in a failed state.
30-
>
31-
3228
### Working with Azure PowerShell
3329

3430
[!INCLUDE [updated-for-az](../../includes/hybrid-az-ps.md)]
@@ -71,7 +67,7 @@ Enable connectivity between your on-premises networks. There are separate sets o
7167
```
7268
7369
> [!NOTE]
74-
> IPv6 support for ExpressRoute Global Reach is now in Public Preview. To add an IPv6 Global Reach connection, you must specify a /125 IPv6 subnet for *-AddressPrefix* and an *-AddressPrefixType* of *IPv6*.
70+
> If you wish to enable IPv6 support for ExpressRoute Global Reach, you must specify a /125 IPv6 subnet for *-AddressPrefix* and an *-AddressPrefixType* of *IPv6*.
7571
7672
```azurepowershell-interactive
7773
Add-AzExpressRouteCircuitConnectionConfig -Name 'Your_connection_name' -ExpressRouteCircuit $ckt_1 -PeerExpressRouteCircuitPeering $ckt_2.Peerings[0].Id -AddressPrefix '__.__.__.__/125' -AddressPrefixType IPv6
@@ -104,8 +100,8 @@ If the two circuits are not in the same Azure subscription, you need authorizati
104100
Add-AzExpressRouteCircuitConnectionConfig -Name 'Your_connection_name' -ExpressRouteCircuit $ckt_1 -PeerExpressRouteCircuitPeering "circuit_2_private_peering_id" -AddressPrefix '__.__.__.__/29' -AuthorizationKey '########-####-####-####-############'
105101
```
106102

107-
> [!NOTE]
108-
> IPv6 support for ExpressRoute Global Reach is now in Public Preview. To add an IPv6 Global Reach connection, you must specify a /125 IPv6 subnet for *-AddressPrefix* and an *-AddressPrefixType* of *IPv6*.
103+
> [!NOTE]
104+
> If you wish to enable IPv6 support for ExpressRoute Global Reach, you must specify a /125 IPv6 subnet for *-AddressPrefix* and an *-AddressPrefixType* of *IPv6*.
109105
110106
```azurepowershell-interactive
111107
Add-AzExpressRouteCircuitConnectionConfig -Name 'Your_connection_name' -ExpressRouteCircuit $ckt_1 -PeerExpressRouteCircuitPeering $ckt_2.Peerings[0].Id -AddressPrefix '__.__.__.__/125' -AddressPrefixType IPv6 -AuthorizationKey '########-####-####-####-############'
@@ -139,7 +135,7 @@ Set-AzExpressRouteCircuit -ExpressRouteCircuit $ckt_1
139135
```
140136

141137
> [!NOTE]
142-
> IPv6 support for ExpressRoute Global Reach is now in Public Preview. To delete an IPv6 Global Reach connection, you must specify an *-AddressPrefixType* of *IPv6* like in the following command.
138+
> To delete an IPv6 Global Reach connection, you must specify an *-AddressPrefixType* of *IPv6* like in the following command.
143139
144140
```azurepowershell-interactive
145141
$ckt_1 = Get-AzExpressRouteCircuit -Name "Your_circuit_1_name" -ResourceGroupName "Your_resource_group"

0 commit comments

Comments
 (0)