@@ -19,47 +19,47 @@ This document outlines the process of deleting Access Control Lists (ACLs) assoc
19
19
20
20
1 . ** Set subscription (if necessary):**
21
21
22
- If you have multiple subscriptions and need to set one as the default, you can do so with:
22
+ If you have multiple subscriptions and need to set one as the default, you can do so with:
23
23
24
- ``` Azure CLI
25
- az account set --subscription <subscription-id>
26
- ```
24
+ ``` Azure CLI
25
+ az account set --subscription <subscription-id>
26
+ ```
27
27
28
28
2 . ** Delete ACLs associated with NNI:**
29
29
30
- To delete ACLs applied on NNI or External Network resources, pass a null value to ` --ingress-acl-id ` and ` --egress-acl-id ` .
30
+ To delete ACLs applied on NNI or External Network resources, pass a null value to ` --ingress-acl-id ` and ` --egress-acl-id ` .
31
31
32
- ``` Azure CLI
33
- az networkfabric nni update --resource-group "<resource-group-name>" --resource-name "<nni-name>" --fabric "<fabric-name>" --ingress-acl-id null --egress-acl-id null
34
- ```
32
+ ``` Azure CLI
33
+ az networkfabric nni update --resource-group "<resource-group-name>" --resource-name "<nni-name>" --fabric "<fabric-name>" --ingress-acl-id null --egress-acl-id null
34
+ ```
35
35
36
- | Parameter | Description |
37
- | ----------------------| --------------------------------------------------------------------------------------------------|
38
- | ` --resource-group ` | Name of the resource group containing the network fabric instance. |
39
- | ` --resource-name ` | Name of the network fabric NNI (Network-to-Network Interface) to be updated. |
40
- | ` --fabric ` | Name of the fabric where the NNI is provisioned. |
41
- | ` --ingress-acl-id ` | Resource ID of the ingress access control list (ACL) for inbound traffic (null for no specific ACL). |
42
- | ` --egress-acl-id ` | Resource ID of the egress access control list (ACL) for outbound traffic (null for no specific ACL). |
36
+ | Parameter | Description |
37
+ | ----------------------| --------------------------------------------------------------------------------------------------|
38
+ | ` --resource-group ` | Name of the resource group containing the network fabric instance. |
39
+ | ` --resource-name ` | Name of the network fabric NNI (Network-to-Network Interface) to be updated. |
40
+ | ` --fabric ` | Name of the fabric where the NNI is provisioned. |
41
+ | ` --ingress-acl-id ` | Resource ID of the ingress access control list (ACL) for inbound traffic (null for no specific ACL). |
42
+ | ` --egress-acl-id ` | Resource ID of the egress access control list (ACL) for outbound traffic (null for no specific ACL). |
43
43
44
- > [ !NOTE]
45
- > Based on requirements, either the Ingress, Egress, or both can be updated.
44
+ > [ !NOTE]
45
+ > Based on requirements, either the Ingress, Egress, or both can be updated.
46
46
47
47
3 . ** Fabric commit configuration changes:**
48
48
49
- Execute ` fabric commit-configuration ` to commit the configuration changes.
49
+ Execute ` fabric commit-configuration ` to commit the configuration changes.
50
50
51
- ``` Azure CLI
52
- az networkfabric fabric commit-configuration --resource-group "<resource-group>" --resource-name "<fabric-name>"
53
- ```
51
+ ``` Azure CLI
52
+ az networkfabric fabric commit-configuration --resource-group "<resource-group>" --resource-name "<fabric-name>"
53
+ ```
54
54
55
- | Parameter | Description |
56
- | ------------------| --------------------------------------------------------------|
57
- | ` --resource-group ` | The name of the resource group containing the Nexus Network Fabric. |
58
- | ` --resource-name ` | The name of the Nexus Network Fabric to which the configuration changes will be committed. |
55
+ | Parameter | Description |
56
+ | ------------------| --------------------------------------------------------------|
57
+ | ` --resource-group ` | The name of the resource group containing the Nexus Network Fabric. |
58
+ | ` --resource-name ` | The name of the Nexus Network Fabric to which the configuration changes will be committed. |
59
59
60
60
4 . ** Verify changes:**
61
61
62
- Verify the changes using the ` resource list ` command.
62
+ Verify the changes using the ` resource list ` command.
63
63
64
64
### Deleting ACL associations from NNI
65
65
0 commit comments