Skip to content

Commit 19947e3

Browse files
Merge pull request #256561 from jdasari-msft/main
Update howto-configure-isolation-domain.md
2 parents 9a6abf9 + 4b628b5 commit 19947e3

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -303,17 +303,17 @@ Expected Output
303303
## Create an untrusted L3 isolation domain
304304

305305
```azurecli
306-
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"
306+
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"
307307
```
308308
## Create a trusted L3 isolation domain
309309

310310
```azurecli
311-
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"
311+
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"
312312
```
313313
## Create a management L3 isolation domain
314314

315315
```azurecli
316-
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"
316+
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"
317317
```
318318

319319
### Show L3 isolation-domains
@@ -390,7 +390,7 @@ Use the following command to change the administrative state of an L3 isolation
390390
##Note: At least one internal network should be available to change the adminstrative state of an L3 Isolation Domain.
391391

392392
```azurecli
393-
az nf l3domain update-admin-state --resource-group "ResourceGroupName" --resource-name "example-l3domain" --state Enable/Disable
393+
az networkfabric l3domain update-admin-state --resource-group "ResourceGroupName" --resource-name "example-l3domain" --state Enable/Disable
394394
```
395395

396396
Expected Output
@@ -426,7 +426,7 @@ Use the `az show` command to verify whether the administrative state has changed
426426
Use this command to delete an L3 isolation domain:
427427

428428
```azurecli
429-
az nf l3domain delete --resource-group "ResourceGroupName" --resource-name "example-l3domain"
429+
az networkfabric l3domain delete --resource-group "ResourceGroupName" --resource-name "example-l3domain"
430430
```
431431

432432
Use the `show` or `list` commands to validate that the isolation-domain has been deleted.
@@ -537,17 +537,17 @@ Expected Output
537537
## Create an untrusted internal network for an L3 isolation domain
538538

539539
```azurecli
540-
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
540+
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
541541
```
542542
## Create a trusted internal network for an L3 isolation domain
543543

544544
```azurecli
545-
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
545+
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
546546
```
547547
## Create an internal management network for an L3 isolation domain
548548

549549
```azurecli
550-
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
550+
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
551551
```
552552

553553

@@ -786,27 +786,27 @@ Expected Output
786786
## Enable an L2 Isolation Domain
787787

788788
```azurecli
789-
az nf l2domain update-administrative-state --resource-group "ResourceGroupName" --resource-name "l2HAnetwork" --state Enable
789+
az networkfabric l2domain update-administrative-state --resource-group "ResourceGroupName" --resource-name "l2HAnetwork" --state Enable
790790
```
791791

792792
## Enable an L3 isolation domain
793793

794794
Use this command to enable an untrusted L3 isolation domain:
795795

796796
```azurecli
797-
az nf l3domain update-admin-state --resource-group "ResourceGroupName" --resource-name "l3untrust" --state Enable
797+
az networkfabric l3domain update-admin-state --resource-group "ResourceGroupName" --resource-name "l3untrust" --state Enable
798798
```
799799

800800

801801
Use this command to enable a trusted L3 isolation domain:
802802

803803
```azurecli
804-
az nf l3domain update-admin-state --resource-group "ResourceGroupName" --resource-name "l3trust" --state Enable
804+
az networkfabric l3domain update-admin-state --resource-group "ResourceGroupName" --resource-name "l3trust" --state Enable
805805
```
806806

807807

808808
Use this command to enable a management L3 isolation domain:
809809

810810
```azurecli
811-
az nf l3domain update-admin-state --resource-group "ResourceGroupName" --resource-name "l3mgmt" --state Enable
811+
az networkfabric l3domain update-admin-state --resource-group "ResourceGroupName" --resource-name "l3mgmt" --state Enable
812812
```

0 commit comments

Comments
 (0)