Skip to content

Commit 0acdda8

Browse files
authored
Merge pull request #106028 from nbnakano/patch-6
Update expressroute-howto-reset-peering.md
2 parents 4516a50 + c7642d6 commit 0acdda8

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

articles/expressroute/expressroute-howto-reset-peering.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,14 +129,22 @@ There are a two scenarios where you may find it helpful to reset your ExpressRou
129129
AllowClassicOperations : False
130130
GatewayManagerEtag :
131131
```
132-
6. Run the following commands to change the state of the peering.
132+
6. Run the following commands to change the peering state to disabled.
133133

134134
```azurepowershell-interactive
135135
$ckt.Peerings[0].State = "Disabled"
136136
Set-AzExpressRouteCircuit -ExpressRouteCircuit $ckt
137137
```
138-
The peering should be in a state you set.
138+
The peering should be in a disabled state you set.
139139

140+
7. Run the following commands to change the peering state back to enabled.
141+
142+
```azurepowershell-interactive
143+
$ckt.Peerings[0].State = "Enabled"
144+
Set-AzExpressRouteCircuit -ExpressRouteCircuit $ckt
145+
```
146+
The peering should be in a enabled state you set.
147+
140148
## Next steps
141149
If you need help with troubleshooting an ExpressRoute problem, see the following articles:
142150
* [Verifying ExpressRoute connectivity](expressroute-troubleshooting-expressroute-overview.md)

0 commit comments

Comments
 (0)