Complete the code to create an ExpressRoute circuit with the correct SKU.
az network express-route create --name myCircuit --resource-group myResourceGroup --location eastus --bandwidth 200 --sku [1]
The SKU Standard_UnlimitedData is a valid SKU for ExpressRoute circuits providing unlimited data with standard features.
Complete the code to link the ExpressRoute circuit to a virtual network gateway.
az network vpn-connection create --name myConnection --resource-group myResourceGroup --vnet-gateway1 myVnetGateway --express-route-circuit2 [1] --location eastusThe parameter --express-route-circuit2 expects the name of the ExpressRoute circuit to link to the VPN connection.
Fix the error in the command to create a peering on the ExpressRoute circuit.
az network express-route peering create --circuit-name myCircuit --resource-group myResourceGroup --peering-type [1] --peer-asn 65010 --vlan 200
The correct peering type for Microsoft services over ExpressRoute is MicrosoftPeering.
Fill both blanks to configure the ExpressRoute circuit with the correct service provider and peering location.
az network express-route create --name myCircuit --resource-group myResourceGroup --location eastus --bandwidth 1000 --provider [1] --peering-location [2]
The service provider Equinix and peering location Silicon Valley are valid and commonly paired for ExpressRoute circuits.
Fill all three blanks to create an ExpressRoute circuit with the correct SKU, bandwidth, and peering location.
az network express-route create --name myCircuit --resource-group myResourceGroup --location eastus --bandwidth [1] --sku [2] --peering-location [3]
The bandwidth 200 Mbps, SKU Standard_UnlimitedData, and peering location New York form a valid ExpressRoute circuit configuration.