Azure Virtual Networking
- Lets try to create azure virtual network (10.10.0.0/16) which is private with 4 subnets using azure portal
- web (10.10.0.0/24)
- app (10.10.1.0/24)
- db (10.10.2.0/24)
- mgmt (10.10.3.0/24)
- In Azure Vnet is created at a region level, subnet is also created at a region level.
- Lets try to create azure vnet in region without zones and with zones
- Without zones in south-india region

- Create a resource group

- Now lets create a virtual network

- When we create a virtual network largest range which we can choose for vnet is /8 and the smallest range which can be chosen is /29
- Now lets try to create a vnet in Region with zones. So we will be creating a new resource group vnetwithzones in central us region
- Rest of the UI looks the same

Now lets create vnet from Azure Powershell
- Ensure Azure Powershell is installed on your system Refer Here
- To install necessary softwares on your system Refer Here
- Ensure Visual Studio has extensions for
- Powershell
- Azure Tools
- Lets use Azure Powershell to create a vnet without zones
- Login into Azure:
Connect-AzAccount-
Now Verify if you have authenticated using
Get-AzResourceGroup -
Refer Here for the powershell script
- Exercise: Try to create azure vnet in a region with zone support.
