Skip to content

Commit 8d5db45

Browse files
authored
Update delete-access-control-list-network-to-network-interconnect.md
corrected the issues
1 parent 234716c commit 8d5db45

File tree

1 file changed

+15
-11
lines changed

1 file changed

+15
-11
lines changed

articles/operator-nexus/delete-access-control-list-network-to-network-interconnect.md

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,22 @@ Before proceeding, ensure you have the following prerequisites:
2424
## Procedure
2525

2626
1. **Login to Azure:**
27+
2728
Use the following command to log in to your Azure account:
29+
2830
```Azure CLI
2931
az login
3032
```
3133

32-
2. **Set subscription (if necessary):**
34+
3. **Set subscription (if necessary):**
35+
3336
If you have multiple subscriptions and need to set one as the default, you can do so with:
37+
3438
```Azure CLI
3539
az account set --subscription <subscription-id>
3640
```
3741

38-
3. **Delete ACLs Associated with NNI:**
42+
5. **Delete ACLs associated with NNI:**
3943

4044
To delete ACLs applied on NNI or External Network resources, pass a null value to `--ingress-acl-id` and `--egress-acl-id`.
4145

@@ -54,7 +58,7 @@ Before proceeding, ensure you have the following prerequisites:
5458
> [!NOTE]
5559
> Based on requirements, either the Ingress, Egress, or both can be updated.
5660
57-
4. **Commit Configuration Changes:**
61+
6. **Fabric commit configuration changes:**
5862

5963
Execute `fabric commit-configuration` to commit the configuration changes.
6064

@@ -67,23 +71,23 @@ Before proceeding, ensure you have the following prerequisites:
6771
| `--resource-group` | The name of the resource group containing the Nexus Network Fabric. |
6872
| `--resource-name` | The name of the Nexus Network Fabric to which the configuration changes will be committed. |
6973

70-
5. **Verify Changes:**
74+
7. **Verify changes:**
7175

7276
Verify the changes using the `resource list` command.
7377

74-
### Deleting ACL Associations from NNI
78+
### Deleting ACL associations from NNI
7579

7680
To disassociate only the egress ACL from an NNI, use the following command:
7781

78-
```Azure CLI
79-
az networkfabric nni update --resource-group "<resource-group-name>" --resource-name "<nni-name>" --fabric "<fabric-name>" --egress-acl-id null
80-
```
82+
```Azure CLI
83+
az networkfabric nni update --resource-group "<resource-group-name>" --resource-name "<nni-name>" --fabric "<fabric-name>" --egress-acl-id null
84+
```
8185

8286
To disassociate both egress and ingress ACLs from an NNI, use the following command:
8387

84-
```Azure CLI
85-
az networkfabric nni update --resource-group "<resource-group-name>" --resource-name "<nni-name>" --fabric "<fabric-name>" --egress-acl-id null --ingress-acl-id null
86-
```
88+
```Azure CLI
89+
az networkfabric nni update --resource-group "<resource-group-name>" --resource-name "<nni-name>" --fabric "<fabric-name>" --egress-acl-id null --ingress-acl-id null
90+
```
8791

8892
Ensure to replace placeholders with actual resource group and NNI names for accurate execution.
8993

0 commit comments

Comments
 (0)