1
1
---
2
- title : " Azure Operator Nexus: Creation of L3 isolation domain"
3
- description : Learn how create L3 isolation domain.
4
- author : jaredr80 # Required; your GitHub user alias, with correct capitalization.
5
- ms.author : jaredro # Required; microsoft alias of author; optional team alias.
6
- ms.service : azure # Required;
7
- ms.topic : include # Required; leave this attribute/value as-is.
8
- ms.date : 01/26/2023 # Required; mm/dd/yyyy format.
2
+ title : " Azure Operator Nexus: Create an L3 isolation domain"
3
+ description : Learn how to create an L3 isolation domain.
4
+ author : jaredr80
5
+ ms.author : jaredro
6
+ ms.service : azure
7
+ ms.topic : include
8
+ ms.date : 01/26/2023
9
9
---
10
10
11
- - Create a L3 isolation domain
11
+ Create an L3 isolation domain:
12
12
13
13
``` azurecli
14
14
az nf l3domain create \
@@ -19,12 +19,10 @@ ms.date: 01/26/2023 #Required; mm/dd/yyyy format.
19
19
--location "<ClusterAzureRegion>"
20
20
```
21
21
22
- - Create an ` internalnetwork ` resource for every VLAN/subnet that you need to include in your L3 isolation domain
23
-
22
+ Create an ` internalnetwork ` resource for every VLAN or subnet that you need to include in your L3 isolation domain.
24
23
25
24
> [ !NOTE]
26
- > The following example uses the minimal configuration you will need to create a valid internal network.
27
- > The optional parameters are not shown.
25
+ > The following example uses the minimal configuration for creating a valid internal network. It doesn't show optional parameters.
28
26
29
27
``` azurecli
30
28
az nf internalnetwork create \
@@ -41,8 +39,9 @@ ms.date: 01/26/2023 #Required; mm/dd/yyyy format.
41
39
"ipv4NeighborAddress":[{"address": "<YourSubetInfoHere> "}]}'
42
40
```
43
41
44
- - (Optional) Repeat, as needed, for any other ` internalnetwork(s) ` that have to be added to this L3 isolation domain
45
- - Enable the L3 isolation-domain after all ` internalnetworks ` have been created
42
+ Repeat, as needed, for any other ` internalnetwork ` resources that you have to add to this L3 isolation domain.
43
+
44
+ Enable the L3 isolation domain after you've created all ` internalnetwork ` resources.
46
45
47
46
``` azurecli
48
47
az nf l3domain update-admin-state \
@@ -52,4 +51,4 @@ ms.date: 01/26/2023 #Required; mm/dd/yyyy format.
52
51
--state Enable
53
52
```
54
53
55
- - Repeat to create more L3 isolation domain(s) .
54
+ Repeat to create more L3 isolation domains .
0 commit comments