- Lab
- A Cloud Guru
Create a Virtual Network in Azure Using Azure CLI
Virtual Networks (VNet) are a core and common part of many solutions that you can build within Azure. Using a VNet, we can provide private connectivity between resources in Azure. In this lab, you will have the opportunity to create a VNet using Azure CLI. Through the Azure CLI, we can create resources within Azure that can help automate and improve consistency for many administrative tasks that you would otherwise complete manually through the Azure portal. After completing this lab, you'll be familiar with how to create a VNet and modify subnet configuration, using Azure CLI.
Path Info
Table of Contents
-
Challenge
Create a Virtual Network
Do the following to create a Virtual Network with the Azure CLI:
-
On the main page, select the Azure Cloud Shell button (>_) at the top of the page.
-
Choose the Bash environment.
-
Select Show advanced settings.
-
Set it up as follows:
- Subscription: Default
- Cloud Shell region:
US West
- Resource group: Default
- Storage account: Select Use existing
- File share: Select Use existing and enter cloudshell in the text field
-
Select Create storage.
-
Once in the shell, enter the following to create the Virtual Network:
az network vnet create --name "vnet1" --resource-group <TAB> --address-prefixes 10.1.0.0/16
Note:
<TAB>
is the Tab key to automatically populate the resource group name.
-
-
Challenge
Configure a Subnet for Your New Virtual Network
-
Continue to use Azure Cloud Shell to now configure a subnet.
-
Choose the Bash environment.
-
Once in the shell, enter the following to create a subnet for the Virtual Network you created earlier:
az network vnet subnet create --name "subnet1" --vnet-name "vnet1" --resource-group <TAB> --address-prefixes 10.1.1.0/24
Note:
<TAB>
is the Tab key to automatically populate the resource group name.
-
What's a lab?
Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.
Provided environment for hands-on practice
We will provide the credentials and environment necessary for you to practice right within your browser.
Guided walkthrough
Follow along with the author’s guided walkthrough and build something new in your provided environment!
Did you know?
On average, you retain 75% more of your learning if you get time for practice.