Skip to content

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.
  • Labs icon Lab
  • A Cloud Guru
Azure icon
Labs

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.

Azure icon
Labs

Path Info

Level
Clock icon Beginner
Duration
Clock icon 45m
Published
Clock icon Jun 05, 2020

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.

Table of Contents

  1. Challenge

    Create a Virtual Network

    Do the following to create a Virtual Network with the Azure CLI:

    1. On the main page, select the Azure Cloud Shell button (>_) at the top of the page.

    2. Choose the Bash environment.

    3. Select Show advanced settings.

    4. 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
    5. Select Create storage.

    6. 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.

  2. Challenge

    Configure a Subnet for Your New Virtual Network

    1. Continue to use Azure Cloud Shell to now configure a subnet.

    2. Choose the Bash environment.

    3. 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.

The Cloud Content team comprises subject matter experts hyper focused on services offered by the leading cloud vendors (AWS, GCP, and Azure), as well as cloud-related technologies such as Linux and DevOps. The team is thrilled to share their knowledge to help you build modern tech solutions from the ground up, secure and optimize your environments, and so much more!

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.

Start learning by doing today

View Plans