File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -129,14 +129,22 @@ There are a two scenarios where you may find it helpful to reset your ExpressRou
129
129
AllowClassicOperations : False
130
130
GatewayManagerEtag :
131
131
```
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 .
133
133
134
134
``` azurepowershell-interactive
135
135
$ckt.Peerings[0].State = "Disabled"
136
136
Set-AzExpressRouteCircuit -ExpressRouteCircuit $ckt
137
137
```
138
- The peering should be in a state you set.
138
+ The peering should be in a disabled state you set.
139
139
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
+
140
148
## Next steps
141
149
If you need help with troubleshooting an ExpressRoute problem, see the following articles:
142
150
* [ Verifying ExpressRoute connectivity] ( expressroute-troubleshooting-expressroute-overview.md )
You can’t perform that action at this time.
0 commit comments