The Azure Quickstart templates are currently available in English
This template allows you to connect two VNETs in different regions using Virtual Network Gateways
Ezt az Azure Resource Manager-sablont (ARM-sablont) nem a Microsoft, hanem a közösség egyik tagja készítette. Az egyes ARM-sablonok nem a Microsofttól, hanem a sablon tulajdonosától licencelhetők licencszerződés keretében. A Microsoft semmilyen felelősséget nem vállalal a közösség tagjai által biztosított és licencbe adott ARM-sablonokért, és azokat a biztonság, kompatibilitás és teljesítmény szempontjából nem ellenőrzi. A közösségi ARM-sablonokat a Microsoft semmilyen terméktámogatási programja vagy szolgáltatása nem támogatja, és ezek „adott állapotukban” állnak rendelkezésre, mindennemű garancia nélkül.
Paraméterek
Paraméter neve | Leírás |
---|---|
location1 | Location where first VNET, Gateway, PublicIP and Connection will be deployed. |
location2 | Location where second VNET, Gateway, PublicIP and Connection will be deployed. |
virtualNetworkName1 | Name of the first VNET. |
addressPrefix1 | Address space for the first VNET. |
subnet1Name1 | Name of the first subnet in the first VNET. Please note, an additional subnet called GatewaySubnet will be created where the VirtualNetworkGateway will be deployed. The name of that subnet must not be changed from GatewaySubnet. |
subnet1Prefix1 | The prefix for the first subnet in the first VNET. |
gatewaySubnetPrefix1 | The prefix for the GatewaySubnet where the first VirtualNetworkGateway will be deployed. This must be at least /29. |
gatewayPublicIPName1 | The name of the PublicIP attached to the first VirtualNetworkGateway. |
gatewayName1 | The name of the first VirtualNetworkGateway. |
connectionName1 | The name of the first connection, connecting the first VirtualNetworkGateway to the second VirtualNetworkGateway. |
virtualNetworkName2 | Name of the second VNET. |
addressPrefix2 | Address space for the second VNET. |
subnet1Name2 | Name of the first subnet in the second VNET. Please note, an additional subnet called GatewaySubnet will be created where the VirtualNetworkGateway will be deployed. The name of that subnet must not be changed from GatewaySubnet. |
subnet1Prefix2 | The prefix for the first subnet in the second VNET. |
gatewaySubnetPrefix2 | The prefix for the GatewaySubnet where the second VirtualNetworkGateway will be deployed. This must be at least /29. |
gatewayPublicIPName2 | The name of the PublicIP attached to the second VirtualNetworkGateway. |
gatewayName2 | The name of the second VirtualNetworkGateway. |
connectionName2 | The name of the second connection, connecting the second VirtualNetworkGateway to the first VirtualNetworkGateway. |
sharedKey | The shared key used to establish connection between the two VirtualNetworkGateways. |
A sablon használata
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 deploymentAz Azure PowerShell telepítése és konfigurálása
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-vnet-to-vnet/azuredeploy.json
Parancssor
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 deploymentAz Azure többplatformos parancssori felületének telepítése és beállítása
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-vnet-to-vnet/azuredeploy.json