Las plantillas de Inicio rápido de Azure están disponibles actualmente en inglés.
This template deploys a VPN Virtual Network Gateway configured with an Azure Active Directory Point-to-Site connection
Esta plantilla de Azure Resource Manager (ARM) la creó un miembro de la comunidad, no Microsoft. Su propietario (no Microsoft) le permite usar las plantillas de ARM con arreglo a un contrato de licencia. Microsoft no se responsabiliza de ninguna plantilla de ARM que le proporcionen los miembros de la comunidad (o cuya licencia le otorguen) en cuanto a su seguridad, compatibilidad ni rendimiento. Las plantillas de ARM de la comunidad no reciben ningún tipo de soporte en ningún servicio ni programa de soporte de Microsoft. Dichas plantillas se proporcionan TAL CUAL, sin garantía de ningún tipo.
Parámetros
Nombre del parámetro | Descripción |
---|---|
virtualNetworkName | Name for the virtual network |
location | Location for the resources |
frontendSubName | Name for the frontend subnet |
virtualNetworkPrefix | CIDR block representing the address space of the VNet |
frontendSubPrefix | CIDR block for the front end subnet, subset of VNet address space |
gatewaySubPrefix | CIDR block for the gateway subnet, subset of VNet address space |
gatewayName | Name for the new gateway |
gatewayPublicIPName | Name for public IP resource used for the new azure gateway |
gatewaySku | The SKU of the Gateway. This must be either Standard or HighPerformance to work with OpenVPN |
vpnType | Route based (Dynamic Gateway) or Policy based (Static Gateway) |
vpnClientAddressPool | The IP address range from which VPN clients will receive an IP address when connected. Range specified must not overlap with on-premise network |
Uso de la plantilla
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 deploymentInstalar y configurar PowerShell de Azure
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.network/point-to-site-aad/azuredeploy.json
Línea de comandos
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 deploymentInstalación y configuración de la interfaz de línea de comandos multiplataforma de Azure
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.network/point-to-site-aad/azuredeploy.json