Die Azure-Schnellstartvorlagen sind derzeit in englischer Sprache verfügbar.
This template configure ExpressRoute Microsoft peering, deploy an Azure VNet with Expressroute gateway and link the VNet to the ExpressRoute circuit
Diese ARM-Vorlage (Azure-Ressourcen-Manager) wurde von einem Mitglied der Community und nicht von Microsoft erstellt. Jede ARM-Vorlage wird für Sie von dessen Besitzer, nicht von Microsoft, unter einem Lizenzvertrag lizenziert. Microsoft übernimmt keine Zuständigkeiten für ARM-Vorlagen, die von Mitgliedern der Community bereitgestellt und lizenziert werden, und auch nicht für deren Sicherheit, Kompatibilität oder Leistung. ARM-Vorlagen aus der Community werden von keinem Microsoft-Supportprogramm oder -Dienst unterstützt und wie vorhanden ohne jegliche Gewährleistung zur Verfügung gestellt.
Parameter
Parametername | Beschreibung |
---|---|
location | Location for all resources deployed in the Bicep file |
erpeeringLocation | ExpressRoute peering location |
erCircuitName | Name of the ExpressRoute circuit |
serviceProviderName | Name of the ExpressRoute provider |
erSKU_Tier | Tier ExpressRoute circuit |
erSKU_Family | Billing model ExpressRoute circuit |
bandwidthInMbps | Bandwidth ExpressRoute circuit |
peerASN | autonomous system number used to create private peering between the customer edge router and MSEE routers |
primaryPeerAddressPrefix | point-to-point network prefix of primary link between the customer edge router and MSEE router |
secondaryPeerAddressPrefix | point-to-point network prefix of secondary link between the customer edge router and MSEE router |
vlanId | VLAN Id used between the customer edge routers and MSEE routers. primary and secondary link have the same VLAN Id |
vnetName | name of the Virtual Network |
subnet1Name | name of the subnet |
vnetAddressSpace | address space assigned to the Virtual Network |
subnet1Prefix | network prefix assigned to the subnet |
gatewaySubnetPrefix | network prefixes assigned to the gateway subnet. It has to be a network prefix with mask /27 or larger |
gatewayName | name of the ExpressRoute Gateway |
gatewaySku | ExpressRoute Gateway SKU |
Verwenden der Vorlage
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 installieren und konfigurieren
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.network/expressroute-private-peering-vnet/azuredeploy.json
Befehlszeile
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 deploymentInstallieren und Konfigurieren der plattformübergreifenden Azure-Befehlszeilenschnittstelle
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.network/expressroute-private-peering-vnet/azuredeploy.json