You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/operator-nexus/howto-configure-isolation-domain.md
+27-27Lines changed: 27 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ For Azure Operator Nexus instances, isolation domains enable communication betwe
17
17
18
18
1. Ensure that a network fabric controller (NFC) and a network fabric have been created.
19
19
1. Install the latest version of the
20
-
[Azure CLI extension for managed network fabrics](./howto-install-cli-extensions.md).
20
+
[Azure CLI extension for managed network fabric](./howto-install-cli-extensions.md).
21
21
1. Use the following command to sign in to your Azure account and set the subscription to your Azure subscription ID. This should be the same subscription ID that you use for all the resources in an Azure Operator Nexus instance.
22
22
23
23
```azurecli
@@ -60,7 +60,7 @@ The following parameters are available for configuring isolation domains.
60
60
Use the following commands to create an L2 isolation domain:
61
61
62
62
```azurecli
63
-
az nf l2domain create \
63
+
az networkfabric l2domain create \
64
64
--resource-group "ResourceGroupName" \
65
65
--resource-name "example-l2domain" \
66
66
--location "eastus" \
@@ -102,7 +102,7 @@ Expected output:
102
102
This command shows details about L2 isolation domains, including their administrative states:
103
103
104
104
```azurecli
105
-
az nf l2domain show --resource-group "ResourceGroupName" --resource-name "example-l2domain"
105
+
az networkfabric l2domain show --resource-group "ResourceGroupName" --resource-name "example-l2domain"
106
106
```
107
107
108
108
Expected output:
@@ -138,7 +138,7 @@ Expected output:
138
138
This command lists all L2 isolation domains available in a resource group:
139
139
140
140
```azurecli
141
-
az nf l2domain list --resource-group "ResourceGroupName"
141
+
az networkfabric l2domain list --resource-group "ResourceGroupName"
142
142
```
143
143
144
144
Expected output:
@@ -174,7 +174,7 @@ Expected output:
174
174
You must enable an isolation domain to push the configuration to the network fabric devices. Use the following command to change the administrative state of an isolation domain:
175
175
176
176
```azurecli
177
-
az nf l2domain update-admin-state --resource-group "ResourceGroupName" --resource-name "example-l2domain" --state Enable/Disable
177
+
az networkfabric l2domain update-admin-state --resource-group "ResourceGroupName" --resource-name "example-l2domain" --state Enable/Disable
178
178
```
179
179
180
180
Expected output:
@@ -210,7 +210,7 @@ Expected output:
210
210
Use this command to delete an L2 isolation domain:
211
211
212
212
```azurecli
213
-
az nf l2domain delete --resource-group "ResourceGroupName" --resource-name "example-l2domain"
213
+
az networkfabric l2domain delete --resource-group "ResourceGroupName" --resource-name "example-l2domain"
214
214
```
215
215
216
216
Expected output:
@@ -267,7 +267,7 @@ The following parameters for isolation domains are optional.
267
267
Use this command to create an L3 isolation domain:
This command shows details about L3 isolation domains, including their administrative states:
333
333
334
334
```azurecli
335
-
az nf l3domain show --resource-group "ResourceGroupName" --resource-name "example-l3domain"
335
+
az networkfabric l3domain show --resource-group "ResourceGroupName" --resource-name "example-l3domain"
336
336
```
337
337
338
338
Expected output:
@@ -372,7 +372,7 @@ Expected output:
372
372
Use this command to get a list of all L3 isolation domains available in a resource group:
373
373
374
374
```azurecli
375
-
az nf l3domain list --resource-group "ResourceGroupName"
375
+
az networkfabric l3domain list --resource-group "ResourceGroupName"
376
376
```
377
377
378
378
Expected output:
@@ -412,7 +412,7 @@ Expected output:
412
412
Use the following command to change the administrative state of an L3 isolation domain to enabled or disabled:
413
413
414
414
```azurecli
415
-
az nf l3domain update-admin-state --resource-group "ResourceGroupName" --resource-name "example-l3domain" --state Enable/Disable
415
+
az networkfabric l3domain update-admin-state --resource-group "ResourceGroupName" --resource-name "example-l3domain" --state Enable/Disable
416
416
```
417
417
418
418
Expected output:
@@ -452,7 +452,7 @@ Use the `az show` command to verify whether the administrative state has changed
452
452
Use this command to delete an L3 isolation domain:
453
453
454
454
```azurecli
455
-
az nf l3domain delete --resource-group "ResourceGroupName" --resource-name "example-l3domain"
455
+
az networkfabric l3domain delete --resource-group "ResourceGroupName" --resource-name "example-l3domain"
456
456
```
457
457
458
458
Use the `show` or `list` command to validate that the isolation domain has been deleted.
@@ -500,7 +500,7 @@ The following parameters are optional for creating internal networks.
500
500
You need to create an internal network before you enable an L3 isolation domain. This command creates an internal network with BGP configuration and a specified peering address:
501
501
502
502
```azurecli
503
-
az nf internalnetwork create
503
+
az networkfabric internalnetwork create
504
504
--resource-group "ResourceGroupName"
505
505
--l3-isolation-domain-name "example-l3domain"
506
506
--resource-name "example-internalnetwork"
@@ -568,25 +568,25 @@ Expected output:
568
568
### Create an untrusted internal network for an L3 isolation domain
Copy file name to clipboardExpand all lines: articles/operator-nexus/howto-configure-network-fabric.md
+15-16Lines changed: 15 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ Run the following command to create the network fabric. The rack count is either
79
79
80
80
```azurecli
81
81
82
-
az nf fabric create \
82
+
az networkfabric fabric create \
83
83
--resource-group "NFResourceGroupName"
84
84
--location "eastus" \
85
85
--resource-name "NFName" \
@@ -173,7 +173,7 @@ Expected output:
173
173
### Show network fabrics
174
174
175
175
```azurecli
176
-
az nf fabric show --resource-group "NFResourceGroupName" --resource-name "NFName"
176
+
az networkfabric fabric show --resource-group "NFResourceGroupName" --resource-name "NFName"
177
177
```
178
178
179
179
Expected output:
@@ -260,7 +260,7 @@ Expected output:
260
260
### List all network fabrics in a resource group
261
261
262
262
```azurecli
263
-
az nf fabric list --resource-group "NFResourceGroup"
263
+
az networkfabric fabric list --resource-group "NFResourceGroup"
264
264
```
265
265
266
266
Expected output:
@@ -373,7 +373,7 @@ Run the following command to create the NNI:
373
373
374
374
```azurecli
375
375
376
-
az nf nni create \
376
+
az networkfabric nni create \
377
377
--resource-group "NFResourceGroup" \
378
378
--location "eastus" \
379
379
--resource-name "NFNNIName" \
@@ -427,7 +427,7 @@ Expected output:
427
427
### Show network fabric NNIs
428
428
429
429
```azurecli
430
-
az nf nni show -g "NFResourceGroup" --resource-name "NFNNIName" --fabric "NFFabric"
430
+
az networkfabric nni show -g "NFResourceGroup" --resource-name "NFNNIName" --fabric "NFFabric"
431
431
432
432
```
433
433
@@ -472,7 +472,7 @@ Expected output:
472
472
### List or get network fabric NNIs
473
473
474
474
```azurecli
475
-
az nf nni list -g NFResourceGroup --fabric NFFabric
475
+
az networkfabric nni list -g NFResourceGroup --fabric NFFabric
476
476
```
477
477
478
478
Expected output:
@@ -520,7 +520,7 @@ Run the following command to update network fabric devices:
520
520
521
521
```azurecli
522
522
523
-
az nf device update \
523
+
az networkfabric device update \
524
524
--resource-group "NFResourceGroup" \
525
525
--resource-name "Network-Device-Name" \
526
526
--location "eastus" \
@@ -573,7 +573,7 @@ For example, `AggrRack` consists of:
573
573
Run the following command to list network fabric devices in a resource group:
574
574
575
575
```azurecli
576
-
az nf device list --resource-group "NFResourceGroup"
576
+
az networkfabric device list --resource-group "NFResourceGroup"
577
577
```
578
578
579
579
Expected output:
@@ -728,7 +728,7 @@ Expected output:
728
728
Run the following command to get or show details of a network fabric device:
729
729
730
730
```azurecli
731
-
az nf device show --resource-group "NFResourceGroup" --resource-name "Network-Device-Name"
731
+
az networkfabric device show --resource-group "NFResourceGroup" --resource-name "Network-Device-Name"
732
732
```
733
733
734
734
Expected output:
@@ -765,11 +765,11 @@ Expected output:
765
765
After you update the device serial number, provision and show the fabric by running the following commands:
766
766
767
767
```azurecli
768
-
az nf fabric provision --resource-group "NFResourceGroup" --resource-name "NFName"
768
+
az networkfabric fabric provision --resource-group "NFResourceGroup" --resource-name "NFName"
769
769
```
770
770
771
771
```azurecli
772
-
az nf fabric show --resource-group "NFResourceGroup" --resource-name "NFName"
772
+
az networkfabric fabric show --resource-group "NFResourceGroup" --resource-name "NFName"
773
773
```
774
774
775
775
Expected output:
@@ -856,7 +856,7 @@ Expected output:
856
856
To deprovision a fabric, ensure that the fabric is in a provisioned operational state and then run this command:
857
857
858
858
```azurecli
859
-
az nf fabric deprovision --resource-group "NFResourceGroup" --resource-name "NFName"
859
+
az networkfabric fabric deprovision --resource-group "NFResourceGroup" --resource-name "NFName"
860
860
861
861
```
862
862
@@ -948,7 +948,7 @@ To delete a fabric, run the following command. Before you do, make sure that:
948
948
* No racks are associated with the fabric.
949
949
950
950
```azurecli
951
-
az nf fabric delete --resource-group "NFResourceGroup" --resource-name "NFName"
951
+
az networkfabric fabric delete --resource-group "NFResourceGroup" --resource-name "NFName"
952
952
953
953
```
954
954
@@ -1034,13 +1034,12 @@ Expected output:
1034
1034
After you successfully delete the network fabric, when you run the command to show the fabric, you won't find any resources available:
1035
1035
1036
1036
```azurecli
1037
-
az nf fabric show --resource-group "NFResourceGroup" --resource-name "NFName"
1037
+
az networkfabric fabric show --resource-group "NFResourceGroup" --resource-name "NFName"
1038
1038
```
1039
1039
1040
1040
Expected output:
1041
1041
1042
1042
```output
1043
-
Command group 'nf' is in preview and under development. Reference and support levels: https://aka.ms/CLI_refstatus
1044
-
(ResourceNotFound) The Resource 'Microsoft.ManagedNetworkFabric/NetworkFabrics/NFName' under resource group 'NFResourceGroup' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix
1043
+
The Resource 'Microsoft.ManagedNetworkFabric/NetworkFabrics/NFName' under resource group 'NFResourceGroup' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix
0 commit comments