Skip to content

Commit 5917ab4

Browse files
authored
Merge pull request #64390 from takeokams/patch-1
Error correction
2 parents c07a9a0 + 29c2424 commit 5917ab4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,17 +102,17 @@ When the previous operation completes, you will have connectivity between your o
102102

103103
Use the following command to verify the configuration on the circuit where the configuration was made (for example, circuit 1 in the previous example).
104104
```azurepowershell-interactive
105-
$ckt1 = Get-AzExpressRouteCircuit -Name "Your_circuit_1_name" -ResourceGroupName "Your_resource_group"
105+
$ckt_1 = Get-AzExpressRouteCircuit -Name "Your_circuit_1_name" -ResourceGroupName "Your_resource_group"
106106
```
107107

108-
If you simply run *$ckt1* in PowerShell, you see *CircuitConnectionStatus* in the output. It tells you whether the connectivity is established, "Connected", or "Disconnected".
108+
If you simply run *$ckt_1* in PowerShell, you see *CircuitConnectionStatus* in the output. It tells you whether the connectivity is established, "Connected", or "Disconnected".
109109

110110
## Disable connectivity
111111

112112
To disable connectivity between your on-premises networks, run the commands against the circuit where the configuration was made (for example, circuit 1 in the previous example).
113113

114114
```azurepowershell-interactive
115-
$ckt1 = Get-AzExpressRouteCircuit -Name "Your_circuit_1_name" -ResourceGroupName "Your_resource_group"
115+
$ckt_1 = Get-AzExpressRouteCircuit -Name "Your_circuit_1_name" -ResourceGroupName "Your_resource_group"
116116
Remove-AzExpressRouteCircuitConnectionConfig -Name "Your_connection_name" -ExpressRouteCircuit $ckt_1
117117
Set-AzExpressRouteCircuit -ExpressRouteCircuit $ckt_1
118118
```

0 commit comments

Comments
 (0)