The Azure Quickstart templates are currently available in English
This template allows you to create virtual wan resources including virtual wan, virtual hub, vpn gateway, vpnsite and a vpn connecton.
Этот шаблон Azure Resource Manager (ARM) был создан участником сообщества, а не Майкрософт. Каждый шаблон ARM лицензирован для вас в соответствии с условиями лицензионного соглашения с владельцем, а не с Майкрософт. Майкрософт не несет ответственности за шаблоны ARM, предоставленные и лицензированные членами сообщества, и не отслеживает их безопасности, совместимости или производительности. Шаблоны ARM, созданные сообществом, не поддерживаются ни в соответствии с какой-либо программой поддержки Майкрософт, ни какими-либо службами поддержки Майкрософт и предоставляются КАК ЕСТЬ без каких-либо гарантий.
Параметры
Имя параметра | Описание |
---|---|
location | Location where all resources will be created. |
wanname | Name of the Virtual Wan. |
wansku | Sku of the Virtual Wan. |
hubname | Name of the Virtual Hub. A virtual hub is created inside a virtual wan. |
vpngatewayname | Name of the Vpn Gateway. A vpn gateway is created inside a virtual hub. |
vpnsitename | Name of the vpnsite. A vpnsite represents the on-premise vpn device. A public ip address is mandatory for a vpn site creation. |
connectionName | Name of the vpnconnection. A vpn connection is established between a vpnsite and a vpn gateway. |
vpnsiteAddressspaceList | A list of static routes corresponding to the vpn site. These are configured on the vpn gateway. |
vpnsitePublicIPAddress | The public IP address of a vpn site. |
vpnsiteBgpAsn | The bgp asn number of a vpnsite. |
vpnsiteBgpPeeringAddress | The bgp peer IP address of a vpnsite. |
addressPrefix | The hub address prefix. This address prefix will be used as the address prefix for the hub vnet |
enableBgp | This needs to be set to true if BGP needs to enabled on the vpn connection. |
Использование шаблона
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 deploymentУстановка и настройка служб Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-virtual-wan/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 deploymentУстановка и настройка кросс-платформенного интерфейса командной стройки Azure
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-virtual-wan/azuredeploy.json