Azure 빠른 시작 템플릿은 현재 영어로 제공됩니다.
This template creates a new site with associated 5G packet core resources. It can optionally be deployed to a Kubernetes cluster running on an Azure Stack Edge device.
이 Azure Resource Manager 템플릿은 Microsoft가 아니라 커뮤니티 구성원에 의해 만들어졌습니다. 각 Resource Manager 템플릿은 Microsoft가 아닌 해당 소유자의 사용권 계약에 의거하여 사용이 허가됩니다. Microsoft는 커뮤니티 구성원에 의해 제공 및 라이선스가 부여된 Resource Manager 템플릿에 대해 책임이 없으며, 보안, 호환성 또는 성능을 검사하지 않습니다. 커뮤니티 Resource Manager 템플릿은 Microsoft 지원 프로그램 또는 서비스에서 지원되지 않고, 어떠한 보증도 없이 있는 그대로 제공됩니다.
매개 변수
매개 변수 이름 | 설명 |
---|---|
location | Region where the mobile network will be deployed (must match the resource group region) |
existingMobileNetworkName | Name of the mobile network to which you are adding a site |
existingDataNetworkName | Name of the existing data network to which the mobile network connects |
siteName | The name for the site |
controlPlaneAccessInterfaceName | The name of the control plane interface on the access network. In 5G networks this is called the N2 interface, whereas in 4G networks this is called the S1-MME interface. This should match one of the interfaces configured on your Azure Stack Edge Pro device. |
controlPlaneAccessIpAddress | The IP address of the control plane interface on the access network. In 5G networks this is called the N2 interface, whereas in 4G networks this is called the S1-MME interface. |
userPlaneAccessInterfaceName | The logical name of the user plane interface on the access network. In 5G networks this is called the N3 interface, whereas in 4G networks this is called the S1-U interface. This should match one of the interfaces configured on your Azure Stack Edge Pro device. |
userPlaneAccessInterfaceIpAddress | The IP address of the user plane interface on the access network. In 5G networks this is called the N3 interface, whereas in 4G networks this is called the S1-U interface. |
accessSubnet | The network address of the access subnet in CIDR notation |
accessGateway | The access subnet default gateway |
userPlaneDataInterfaceName | The logical name of the user plane interface on the data network. In 5G networks this is called the N6 interface, whereas in 4G networks this is called the SGi interface. This should match one of the interfaces configured on your Azure Stack Edge Pro device. |
userPlaneDataInterfaceIpAddress | The IP address of the user plane interface on the data network. In 5G networks this is called the N6 interface, whereas in 4G networks this is called the SGi interface. |
userPlaneDataInterfaceSubnet | The network address of the data subnet in CIDR notation |
userPlaneDataInterfaceGateway | The data subnet default gateway |
userEquipmentAddressPoolPrefix | The network address of the subnet from which dynamic IP addresses must be allocated to UEs, given in CIDR notation. Optional if userEquipmentStaticAddressPoolPrefix is specified. If both are specified, they must be the same size and not overlap. |
userEquipmentStaticAddressPoolPrefix | The network address of the subnet from which static IP addresses must be allocated to UEs, given in CIDR notation. Optional if userEquipmentAddressPoolPrefix is specified. If both are specified, they must be the same size and not overlap. |
coreNetworkTechnology | The mode in which the packet core instance will run |
naptEnabled | Whether or not Network Address and Port Translation (NAPT) should be enabled for this data network |
customLocation | The resource ID of the custom location that targets the Azure Kubernetes Service on Azure Stack HCI (AKS-HCI) cluster on the Azure Stack Edge Pro device in the site. If this parameter is not specified, the packet core instance will be created but will not be deployed to an ASE. [Collect custom location information](https://docs.microsoft.com/en-gb/azure/private-5g-core/collect-required-information-for-a-site#collect-custom-location-information) explains which value to specify here. |
템플릿 사용
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentAzure PowerShell 설치 및 구성
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.mobilenetwork/mobilenetwork-create-new-site/azuredeploy.json
명령줄
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentAzure 크로스 플랫폼 명령줄 인터페이스 설치 및 구성
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.mobilenetwork/mobilenetwork-create-new-site/azuredeploy.json