Skip to content

Commit 819c4bc

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into VMSSdocs
2 parents 5f230c9 + e270781 commit 819c4bc

7 files changed

+56
-73
lines changed

articles/operator-nexus/howto-azure-operator-nexus-prerequisites.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ In subsequent deployments of Operator Nexus, you can skip to creating the NFC an
4343
- Microsoft.ResourceConnector
4444
- Microsoft.Resources
4545

46-
## Dependant Azure resources setup
46+
## Dependent Azure resources setup
4747
- Establish [ExpressRoute](/azure/expressroute/expressroute-introduction) connectivity
4848
from your on-premises network to an Azure Region:
4949
- ExpressRoute circuit [creation and verification](/azure/expressroute/expressroute-howto-circuit-portal-resource-manager)

articles/operator-nexus/howto-configure-isolation-domain.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ For Azure Operator Nexus instances, isolation domains enable communication betwe
1717

1818
1. Ensure that a network fabric controller (NFC) and a network fabric have been created.
1919
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).
2121
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.
2222

2323
```azurecli
@@ -60,7 +60,7 @@ The following parameters are available for configuring isolation domains.
6060
Use the following commands to create an L2 isolation domain:
6161

6262
```azurecli
63-
az nf l2domain create \
63+
az networkfabric l2domain create \
6464
--resource-group "ResourceGroupName" \
6565
--resource-name "example-l2domain" \
6666
--location "eastus" \
@@ -102,7 +102,7 @@ Expected output:
102102
This command shows details about L2 isolation domains, including their administrative states:
103103

104104
```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"
106106
```
107107

108108
Expected output:
@@ -138,7 +138,7 @@ Expected output:
138138
This command lists all L2 isolation domains available in a resource group:
139139

140140
```azurecli
141-
az nf l2domain list --resource-group "ResourceGroupName"
141+
az networkfabric l2domain list --resource-group "ResourceGroupName"
142142
```
143143

144144
Expected output:
@@ -174,7 +174,7 @@ Expected output:
174174
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:
175175

176176
```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
178178
```
179179

180180
Expected output:
@@ -210,7 +210,7 @@ Expected output:
210210
Use this command to delete an L2 isolation domain:
211211

212212
```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"
214214
```
215215

216216
Expected output:
@@ -267,7 +267,7 @@ The following parameters for isolation domains are optional.
267267
Use this command to create an L3 isolation domain:
268268

269269
```azurecli
270-
az nf l3domain create
270+
az networkfabric l3domain create
271271
--resource-group "ResourceGroupName"
272272
--resource-name "example-l3domain"
273273
--location "eastus"
@@ -312,27 +312,27 @@ Expected output:
312312
#### Create an untrusted L3 isolation domain
313313

314314
```azurecli
315-
az nf l3domain create --resource-group "ResourceGroupName" --resource-name "l3untrust" --location "eastus" --nf-id "/subscriptions/xxxxxx-xxxxxx-xxxx-xxxx-xxxxxx/resourceGroups/NFResourceGroupName/providers/Microsoft.ManagedNetworkFabric/networkFabrics/NFName"
315+
az networkfabric l3domain create --resource-group "ResourceGroupName" --resource-name "l3untrust" --location "eastus" --nf-id "/subscriptions/xxxxxx-xxxxxx-xxxx-xxxx-xxxxxx/resourceGroups/NFResourceGroupName/providers/Microsoft.ManagedNetworkFabric/networkFabrics/NFName"
316316
```
317317

318318
#### Create a trusted L3 isolation domain
319319

320320
```azurecli
321-
az nf l3domain create --resource-group "ResourceGroupName" --resource-name "l3trust" --location "eastus" --nf-id "/subscriptions/xxxxxx-xxxxxx-xxxx-xxxx-xxxxxx/resourceGroups/NFResourceGroupName/providers/Microsoft.ManagedNetworkFabric/networkFabrics/NFName"
321+
az networkfabric l3domain create --resource-group "ResourceGroupName" --resource-name "l3trust" --location "eastus" --nf-id "/subscriptions/xxxxxx-xxxxxx-xxxx-xxxx-xxxxxx/resourceGroups/NFResourceGroupName/providers/Microsoft.ManagedNetworkFabric/networkFabrics/NFName"
322322
```
323323

324324
#### Create a management L3 isolation domain
325325

326326
```azurecli
327-
az nf l3domain create --resource-group "ResourceGroupName" --resource-name "l3mgmt" --location "eastus" --nf-id "/subscriptions/xxxxxx-xxxxxx-xxxx-xxxx-xxxxxx/resourceGroups/NFResourceGroupName/providers/Microsoft.ManagedNetworkFabric/networkFabrics/NFName"
327+
az networkfabric l3domain create --resource-group "ResourceGroupName" --resource-name "l3mgmt" --location "eastus" --nf-id "/subscriptions/xxxxxx-xxxxxx-xxxx-xxxx-xxxxxx/resourceGroups/NFResourceGroupName/providers/Microsoft.ManagedNetworkFabric/networkFabrics/NFName"
328328
```
329329

330330
### Show L3 isolation domains
331331

332332
This command shows details about L3 isolation domains, including their administrative states:
333333

334334
```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"
336336
```
337337

338338
Expected output:
@@ -372,7 +372,7 @@ Expected output:
372372
Use this command to get a list of all L3 isolation domains available in a resource group:
373373

374374
```azurecli
375-
az nf l3domain list --resource-group "ResourceGroupName"
375+
az networkfabric l3domain list --resource-group "ResourceGroupName"
376376
```
377377

378378
Expected output:
@@ -412,7 +412,7 @@ Expected output:
412412
Use the following command to change the administrative state of an L3 isolation domain to enabled or disabled:
413413

414414
```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
416416
```
417417

418418
Expected output:
@@ -452,7 +452,7 @@ Use the `az show` command to verify whether the administrative state has changed
452452
Use this command to delete an L3 isolation domain:
453453

454454
```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"
456456
```
457457

458458
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.
500500
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:
501501

502502
```azurecli
503-
az nf internalnetwork create
503+
az networkfabric internalnetwork create
504504
--resource-group "ResourceGroupName"
505505
--l3-isolation-domain-name "example-l3domain"
506506
--resource-name "example-internalnetwork"
@@ -568,25 +568,25 @@ Expected output:
568568
### Create an untrusted internal network for an L3 isolation domain
569569

570570
```azurecli
571-
az nf internalnetwork create --resource-group "ResourceGroupName" --l3-isolation-domain-name l3untrust --resource-name untrustnetwork --location "eastus" --vlan-id 502 --fabric-asn 65048 --peer-asn 65047--connected-i-pv4-subnets prefix="10.151.3.11/24" --mtu 1500
571+
az networkfabric internalnetwork create --resource-group "ResourceGroupName" --l3-isolation-domain-name l3untrust --resource-name untrustnetwork --location "eastus" --vlan-id 502 --fabric-asn 65048 --peer-asn 65047--connected-i-pv4-subnets prefix="10.151.3.11/24" --mtu 1500
572572
```
573573

574574
### Create a trusted internal network for an L3 isolation domain
575575

576576
```azurecli
577-
az nf internalnetwork create --resource-group "ResourceGroupName" --l3-isolation-domain-name l3trust --resource-name trustnetwork --location "eastus" --vlan-id 503 --fabric-asn 65048 --peer-asn 65047--connected-i-pv4-subnets prefix="10.151.1.11/24" --mtu 1500
577+
az networkfabric internalnetwork create --resource-group "ResourceGroupName" --l3-isolation-domain-name l3trust --resource-name trustnetwork --location "eastus" --vlan-id 503 --fabric-asn 65048 --peer-asn 65047--connected-i-pv4-subnets prefix="10.151.1.11/24" --mtu 1500
578578
```
579579

580580
### Create an internal management network for an L3 isolation domain
581581

582582
```azurecli
583-
az nf internalnetwork create --resource-group "ResourceGroupName" --l3-isolation-domain-name l3mgmt --resource-name mgmtnetwork --location "eastus" --vlan-id 504 --fabric-asn 65048 --peer-asn 65047--connected-i-pv4-subnets prefix="10.151.2.11/24" --mtu 1500
583+
az networkfabric internalnetwork create --resource-group "ResourceGroupName" --l3-isolation-domain-name l3mgmt --resource-name mgmtnetwork --location "eastus" --vlan-id 504 --fabric-asn 65048 --peer-asn 65047--connected-i-pv4-subnets prefix="10.151.2.11/24" --mtu 1500
584584
```
585585

586586
### Create multiple static routes with a single next hop
587587

588588
```azurecli
589-
az nf internalnetwork create
589+
az networkfabric internalnetwork create
590590
--resource-name "example-internalnetwork"
591591
--l3domain "example-l3domain"
592592
--resource-group "ResourceGroupName"
@@ -671,7 +671,7 @@ Expected output:
671671
### Create an internal network by using IPv6
672672

673673
```azurecli
674-
az nf internalnetwork create
674+
az networkfabric internalnetwork create
675675
--resource-group "ResourceGroupName"
676676
--l3-isolation-domain-name "example-l3domain"
677677
--resource-name "example-internalipv6network"
@@ -755,7 +755,7 @@ For Option A, you need to create an external network before you enable the L3 is
755755
### Create an external network by using Option B
756756

757757
```azurecli
758-
az nf externalnetwork create
758+
az networkfabric externalnetwork create
759759
--resource-group "ResourceGroupName"
760760
--l3domain "examplel3domain"
761761
--resource-name "examplel3-externalnetwork"
@@ -802,7 +802,7 @@ Expected output:
802802
### Create an external network by using Option A
803803

804804
```azurecli
805-
az nf externalnetwork create
805+
az networkfabric externalnetwork create
806806
--resource-group "ResourceGroupName"
807807
--l3domain "example-l3domain"
808808
--resource-name "example-externalipv4network"
@@ -854,7 +854,7 @@ Expected output:
854854
### Create an external network by using IPv6
855855

856856
```azurecli
857-
az nf externalnetwork create
857+
az networkfabric externalnetwork create
858858
--resource-group "ResourceGroupName"
859859
--l3-isolation-domain-name "example-l3domain"
860860
--resource-name "example-externalipv6network"
@@ -906,26 +906,26 @@ Expected output:
906906
## Enable an L2 isolation domain
907907

908908
```azurecli
909-
az nf l2domain update-administrative-state --resource-group "ResourceGroupName" --resource-name "l2HAnetwork" --state Enable
909+
az networkfabric l2domain update-administrative-state --resource-group "ResourceGroupName" --resource-name "l2HAnetwork" --state Enable
910910
```
911911

912912
## Enable an L3 isolation domain
913913

914914
Use this command to enable an untrusted L3 isolation domain:
915915

916916
```azurecli
917-
az nf l3domain update-admin-state --resource-group "ResourceGroupName" --resource-name "l3untrust" --state Enable
917+
az networkfabric l3domain update-admin-state --resource-group "ResourceGroupName" --resource-name "l3untrust" --state Enable
918918
```
919919

920920
Use this command to enable a trusted L3 isolation domain:
921921

922922
```azurecli
923-
az nf l3domain update-admin-state --resource-group "ResourceGroupName" --resource-name "l3trust" --state Enable
923+
az networkfabric l3domain update-admin-state --resource-group "ResourceGroupName" --resource-name "l3trust" --state Enable
924924
```
925925

926926
Use this command to enable a management L3 isolation domain:
927927

928928
```azurecli
929-
az nf l3domain update-admin-state --resource-group "ResourceGroupName" --resource-name "l3mgmt" --state Enable
929+
az networkfabric l3domain update-admin-state --resource-group "ResourceGroupName" --resource-name "l3mgmt" --state Enable
930930
```
931931

articles/operator-nexus/howto-configure-network-fabric-controller.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ az group create -n NFCResourceGroupName -l "East US"
4040
Here's an example of how you can create an NFC by using the Azure CLI:
4141

4242
```azurecli
43-
az nf controller create \
43+
az networkfabric controller create \
4444
--resource-group "NFCResourceGroupName" \
4545
--location "eastus" \
4646
--resource-name "nfcname" \
@@ -86,7 +86,7 @@ NFC creation takes 30 to 45 minutes. Use the `show` command to monitor the progr
8686
## Get a network fabric controller
8787

8888
```azurecli
89-
az nf controller show --resource-group "NFCResourceGroupName" --resource-name "nfcname"
89+
az networkfabric controller show --resource-group "NFCResourceGroupName" --resource-name "nfcname"
9090
```
9191

9292
Expected output:
@@ -146,7 +146,7 @@ Expected output:
146146
You should delete an NFC only after deleting all associated network fabrics. Use this command to delete an NFC:
147147

148148
```azurecli
149-
az nf controller delete --resource-group "NFCResourceGroupName" --resource-name "nfcname"
149+
az networkfabric controller delete --resource-group "NFCResourceGroupName" --resource-name "nfcname"
150150
```
151151

152152
Expected output:

articles/operator-nexus/howto-configure-network-fabric.md

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Run the following command to create the network fabric. The rack count is either
7979

8080
```azurecli
8181
82-
az nf fabric create \
82+
az networkfabric fabric create \
8383
--resource-group "NFResourceGroupName"
8484
--location "eastus" \
8585
--resource-name "NFName" \
@@ -173,7 +173,7 @@ Expected output:
173173
### Show network fabrics
174174

175175
```azurecli
176-
az nf fabric show --resource-group "NFResourceGroupName" --resource-name "NFName"
176+
az networkfabric fabric show --resource-group "NFResourceGroupName" --resource-name "NFName"
177177
```
178178

179179
Expected output:
@@ -260,7 +260,7 @@ Expected output:
260260
### List all network fabrics in a resource group
261261

262262
```azurecli
263-
az nf fabric list --resource-group "NFResourceGroup"
263+
az networkfabric fabric list --resource-group "NFResourceGroup"
264264
```
265265

266266
Expected output:
@@ -373,7 +373,7 @@ Run the following command to create the NNI:
373373

374374
```azurecli
375375
376-
az nf nni create \
376+
az networkfabric nni create \
377377
--resource-group "NFResourceGroup" \
378378
--location "eastus" \
379379
--resource-name "NFNNIName" \
@@ -427,7 +427,7 @@ Expected output:
427427
### Show network fabric NNIs
428428

429429
```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"
431431
432432
```
433433

@@ -472,7 +472,7 @@ Expected output:
472472
### List or get network fabric NNIs
473473

474474
```azurecli
475-
az nf nni list -g NFResourceGroup --fabric NFFabric
475+
az networkfabric nni list -g NFResourceGroup --fabric NFFabric
476476
```
477477

478478
Expected output:
@@ -520,7 +520,7 @@ Run the following command to update network fabric devices:
520520

521521
```azurecli
522522
523-
az nf device update \
523+
az networkfabric device update \
524524
--resource-group "NFResourceGroup" \
525525
--resource-name "Network-Device-Name" \
526526
--location "eastus" \
@@ -573,7 +573,7 @@ For example, `AggrRack` consists of:
573573
Run the following command to list network fabric devices in a resource group:
574574

575575
```azurecli
576-
az nf device list --resource-group "NFResourceGroup"
576+
az networkfabric device list --resource-group "NFResourceGroup"
577577
```
578578

579579
Expected output:
@@ -728,7 +728,7 @@ Expected output:
728728
Run the following command to get or show details of a network fabric device:
729729

730730
```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"
732732
```
733733

734734
Expected output:
@@ -765,11 +765,11 @@ Expected output:
765765
After you update the device serial number, provision and show the fabric by running the following commands:
766766

767767
```azurecli
768-
az nf fabric provision --resource-group "NFResourceGroup" --resource-name "NFName"
768+
az networkfabric fabric provision --resource-group "NFResourceGroup" --resource-name "NFName"
769769
```
770770

771771
```azurecli
772-
az nf fabric show --resource-group "NFResourceGroup" --resource-name "NFName"
772+
az networkfabric fabric show --resource-group "NFResourceGroup" --resource-name "NFName"
773773
```
774774

775775
Expected output:
@@ -856,7 +856,7 @@ Expected output:
856856
To deprovision a fabric, ensure that the fabric is in a provisioned operational state and then run this command:
857857

858858
```azurecli
859-
az nf fabric deprovision --resource-group "NFResourceGroup" --resource-name "NFName"
859+
az networkfabric fabric deprovision --resource-group "NFResourceGroup" --resource-name "NFName"
860860
861861
```
862862

@@ -948,7 +948,7 @@ To delete a fabric, run the following command. Before you do, make sure that:
948948
* No racks are associated with the fabric.
949949

950950
```azurecli
951-
az nf fabric delete --resource-group "NFResourceGroup" --resource-name "NFName"
951+
az networkfabric fabric delete --resource-group "NFResourceGroup" --resource-name "NFName"
952952
953953
```
954954

@@ -1034,13 +1034,12 @@ Expected output:
10341034
After you successfully delete the network fabric, when you run the command to show the fabric, you won't find any resources available:
10351035

10361036
```azurecli
1037-
az nf fabric show --resource-group "NFResourceGroup" --resource-name "NFName"
1037+
az networkfabric fabric show --resource-group "NFResourceGroup" --resource-name "NFName"
10381038
```
10391039

10401040
Expected output:
10411041

10421042
```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
10451044
Code: ResourceNotFound
10461045
```

0 commit comments

Comments
 (0)