Les modèles de démarrage rapide Azure sont actuellement disponibles en anglais.
This template allows you to connect two VNETs in different regions using Virtual Network Gateways
Ce modèle ARM (Azure Resource Manager) a été créé par un membre de la communauté et non par Microsoft. Chaque modèle ARM vous est concédé sous licence sous un contrat de licence par son propriétaire, et non par Microsoft. Microsoft ne peut pas être tenu responsable des modèles ARM fournis et concédés sous licence par les membres de la communauté, ni ne vérifie leur sécurité, leur compatibilité ou leurs performances. Les modèles ARM de la communauté ne sont pris en charge par aucun programme ou service de support Microsoft. Ils sont rendus disponibles EN L'ÉTAT sans garantie d'aucune sorte.
Paramètres
Nom du paramètre | Description |
---|---|
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. |
Utiliser le modèle
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 deploymentInstaller et configurer Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.network/vnet-to-vnet/azuredeploy.json
Ligne de commande
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 deploymentInstaller et configurer l'interface de ligne de commande multiplateforme Azure
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.network/vnet-to-vnet/azuredeploy.json