@@ -38,7 +38,7 @@ Azure Private 5G Core is an Azure cloud service for deploying and managing 5G co
38
38
- [ az mobile-network pcdp create] ( /cli/azure/mobile-network/pcdp#az-mobile-network-pcdp-create )
39
39
- [ az mobile-network data-network create] ( /cli/azure/mobile-network/data-network#az-mobile-network-data-network-create )
40
40
- [ az mobile-network sim group create] ( /cli/azure/mobile-network/sim/group#az-mobile-network-sim-group-create )
41
- - [ az mobile-network slice create] ( /cli/azure/mobile-network/slice#az-mobile-network-slice-create )
41
+ - [ az mobile-network slice create] ( /cli/azure/mobile-network/slice#az-mobile-network-slice-create )
42
42
- [ az mobile-network service create] ( /cli/azure/mobile-network/service#az-mobile-network-service-create )
43
43
- [ az mobile-network sim policy create] ( /cli/azure/mobile-network/sim/policy#az-mobile-network-sim-policy-create )
44
44
- [ az mobile network sim create] ( /cli/azure/mobile-network/sim#az-mobile-network-sim-create )
@@ -83,10 +83,24 @@ Use `az mobile-network pccp create` to create a new **Packet Core Control Plane*
83
83
84
84
| Placeholder| Value|
85
85
| -| -|
86
- | ` <MOBILENETWORK> ` | Enter the name for the mobile network. |
86
+ | ` <MOBILENETWORK> ` | Enter the name of the ASE. |
87
+ | ` <MOBILENETWORK> ` | Enter the name of the mobile network. |
87
88
| ` <RESOURCEGROUP> ` | Enter the name of the resource group. |
88
89
| ` <CONTROLPLANE> ` | Enter the name for the packet core control plane. |
89
90
| ` <SITE> ` | Enter the name of the site. |
91
+ | ` <IPV4ADDRESS> ` | Enter the IPV4 address of the site. |
92
+
93
+ Obtain the ASE ID and assign it to a variable.
94
+
95
+ ``` azurecli
96
+ ASE_ID=$(databoxedge device show --device-name <ASE> -g <RESOURCEGROUP> --query "id")
97
+ ```
98
+
99
+ Obtain the custom location ID and assign it to a variable.
100
+
101
+ ``` azurecli
102
+ ASE_ID=$(customlocation show --name <CUSTOMLOCATION> -g <RESOURCEGROUP> --query "id")
103
+ ```
90
104
91
105
Obtain the site ID and assign it to a variable.
92
106
@@ -97,7 +111,7 @@ SITE_ID=$(mobile-network site show --mobile-network-name <MOBILENETWORK> -g <RES
97
111
Create the site.
98
112
99
113
``` azurecli
100
- az mobile-network pccp create -n <CONTROLPLANE> -g <RESOURCEGROUP> --access-interface "{ name:N2, ipv4Address:10.28.128.2,ipv4Subnet:10.28.128.0/24,ipv4Gateway:10.28.128.1}" --local-diagnostics "{ authentication-type:AAD}" --platform "{ type: AKS-HCI}" --sites "[{id:$SITE_ID}]" --sku G0 --location eastus
114
+ 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
101
115
```
102
116
103
117
### Create a Packet Core Data Plane resource
@@ -242,7 +256,7 @@ Use `az mobile-network attached-data-network create` to attach the **Data Networ
242
256
| ` <RESOURCEGROUP> ` | Enter the name of the resource group. |
243
257
244
258
``` azurecli
245
- az mobile-network attached-data-network create -n <DATANETWORK> -g <RESOURCEGROUP> --pccp-name <CONTROLPLANE> --pcdp-name <DATAPLANE> --dns-addresses "[1.1.1.1]" --data-interface " { name:N2,ipv4Address:10.28.128.2,ipv4Subnet:10.28.128. 0/24,ipv4Gateway:10.28.128.1}"
259
+ az mobile-network attached-data-network create -n <DATANETWORK> -g <RESOURCEGROUP> --pccp-name <CONTROLPLANE> --pcdp-name <DATAPLANE> --dns-addresses "[1.1.1.1]" --data-interface name=N6 --address-pool 192.168.1. 0/24
246
260
```
247
261
248
262
## Clean up resources
0 commit comments