Skip to content

Commit 0bbae34

Browse files
authored
Merge pull request #127319 from changeworld/patch-3
Fix typo: niehgbor/shudown -> neighbor/shutdown
2 parents bb59183 + 6b4f018 commit 0bbae34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/operator-nexus/concepts-disable-border-gateway-protocol-neighbors.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,15 +242,15 @@ https://eastus.management.azure.com/subscriptions/XXXXXXXX/providers/Microsoft.M
242242
If you try to implement a configuration command on the device and the configuration is incorrect, the configuration isn't enforced on the device. The prompt yields a typical error response, indicating a gNMI SET failure. To rectify this error, reapply the correct configuration. There's no change to the state of the device.
243243

244244
```azurecli
245-
az networkfabric device run-rw --resource-name <ResourceName> --resource-group <ResourceGroupName> --rw-command "router bgp 4444\n vrf gfab1-isd\n niehgbor 10.100.30.18 shudown"
245+
az networkfabric device run-rw --resource-name <ResourceName> --resource-group <ResourceGroupName> --rw-command "router bgp 4444\n vrf gfab1-isd\n neighbor 10.100.30.18 shutdown"
246246
```
247247

248248
| Parameter | Description |
249249
|--------------------------|-------------------------------------------------------------------------------------------------------------------------------|
250250
| `az networkfabric device run-rw` | Azure CLI command for executing a read-write operation on a network device within Azure Network Fabric. |
251251
| `--resource-name` | Specifies the name of the resource (network device) on which the RW operation is performed. |
252252
| `--resource-group` | Specifies the name of the resource group that contains the network device. |
253-
| `--rw-command "router bgp 4444\n vrf gfab1-isd\n niehgbor 10.100.30.18 shudown"` | Specifies the RW commands to be executed on the network device. These commands configure BGP settings to shut down the neighbor with IP address 10.100.30.18 within the VRF named "gfab1-isd". |
253+
| `--rw-command "router bgp 4444\n vrf gfab1-isd\n neighbor 10.100.30.18 shutdown"` | Specifies the RW commands to be executed on the network device. These commands configure BGP settings to shut down the neighbor with IP address 10.100.30.18 within the VRF named "gfab1-isd". |
254254

255255

256256
Expected output:

0 commit comments

Comments
 (0)