Skip to content

Commit 66bcd61

Browse files
Corrections
1 parent cb1c05b commit 66bcd61

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

articles/private-5g-core/deploy-private-mobile-network-with-site-command-line.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ Use `az mobile-network pccp create` to create a new **Packet Core Control Plane*
8383

8484
|Placeholder|Value|
8585
|-|-|
86-
| `<MOBILENETWORK>` | Enter the name of the ASE. |
86+
| `<ASE>` | Enter the name of the ASE. |
87+
| `<CUSTOMLOCATION>` | Enter the name of the custom location. |
8788
| `<MOBILENETWORK>` | Enter the name of the mobile network. |
8889
| `<RESOURCEGROUP>` | Enter the name of the resource group. |
8990
| `<CONTROLPLANE>` | Enter the name for the packet core control plane. |
@@ -99,7 +100,7 @@ ASE_ID=$(databoxedge device show --device-name <ASE> -g <RESOURCEGROUP> --query
99100
Obtain the custom location ID and assign it to a variable.
100101

101102
```azurecli
102-
ASE_ID=$(customlocation show --name <CUSTOMLOCATION> -g <RESOURCEGROUP> --query "id")
103+
CUSTOM_LOCATION_ID=$(customlocation show --name <CUSTOMLOCATION> -g <RESOURCEGROUP> --query "id")
103104
```
104105

105106
Obtain the site ID and assign it to a variable.
@@ -108,7 +109,7 @@ Obtain the site ID and assign it to a variable.
108109
SITE_ID=$(mobile-network site show --mobile-network-name <MOBILENETWORK> -g <RESOURCEGROUP> -n <SITE> --query "id")
109110
```
110111

111-
Create the site.
112+
Create the packet core control plane.
112113

113114
```azurecli
114115
az mobile-network pccp create -n <CONTROLPLANE> -g <RESOURCEGROUP> --access-interface name=N2 ipv4Address=<IPV4ADDRESS> --local-diagnostics authentication-type=Password --platform type=AKS-HCI azure-stack-edge-device="{id:$ASE_ID}" customLocation="{id:$CUSTOM_LOCATION_ID}" --sites "[{id:$SITE_ID}]" --sku G0 --location eastus

0 commit comments

Comments
 (0)