CIDR Sheet

CIDR NotationTotal Number of AddressesNetwork MaskDescription
/04,29,49,67,2960.0.0.0All Addresses
/12,14,74,83,684128.0.0.0128 /8 networks
/21,07,37,41,824192.0.0.064 /8 networks
/353,68,70,912224.0.0.032 /8 neworks
/426,84,35,456240.0.0.016 /8 networks
/513,42,17,728248.0.0.08 /8 networks
/66,71,08,864252.0.0.04 /8 networks
/73,35,54,432254.0.0.02 /8 networks
/81,67,77,214255.0.0.01 /8 network
/983,88,608255.128.0.0128 /16 networks
/1041,94,304255.192.0.064 /16 networks
/1120,97,152255.224.0.032 /16 networks
/1210,48,576255.240.0.016 /16 networks
/135,24,288255.248.0.08 /16 networks
/142,62,144255.252.0.04 /16 networks
/151,31,072255.254.0.02 /16 networks
/1665536255.255.0.01 /16 network
/1732768255.255.128.0128 /24 networks
/1816384255.255.192.064 /24 networks
/198192255.255.224.032 /24 networks
/204096255.255.240.016 /24 networks
/212048255.255.248.08 /24 networks
/221024255.255.252.04 /24 networks
/23512255.255.254.02/24 networks
/24256255.255.255.01 /24/network
/25128255.255.255.128half of a /24
/2664255.255.255.192fourth of a /24
/2732255.255.255.224eighth of a /24
/2816255.255.255.2401/16th of a /24
/298255.255.255.2486 usable addresses
/304255.255.255.2522 usable addresses
/312255.255.255.254used in P2P links
/321255.255.255.255Single Host

Advertisement

Azure Resource Mover

Definition:

The Azure resource mover is used to move resources from one region to another region.

Advantages:

  • A single hub for moving resources across regions.
  • Reduced move time and complexity.
  • A simple and consistent experience moving different types of Azure resources.
  • An easy way to identify dependencies across resources you want to move. This helps you to move related resources together, so that everything works as expected in the target region, after the move.
  • Automatic cleanup of resources in the source region, if you want to delete them after the move.

Resources which we can move:

  • Azure VMs and associated disks
  • Encrypted Azure VMs and associated disks. This includes VMs with Azure disk encryption enabled, and Azure VMs using default server-side encryption (both with platform-managed keys and customer-managed keys)
  • NICs
  • Availability sets
  • Azure virtual networks
  • Public IP addresses
  • Network security groups (NSGs)
  • Internal and public load balancers
  • Azure SQL databases and elastic pools.

Powershell commands to create Azure Storage Accounts

Command1:

Creating Blob Storage :

New-AzureRmStorageAccount -ResourceGroupName sandbox -AccountName raghuseshulab02 -Location centralUS -Kind BlobStorage -SkuName Standard_GRS -AccessTier Hot

Command2:

Creating StorageV2:

New-AzureRmStorageAccount -ResourceGroupName sandbox -AccountName testlab130 -Location centralUS -Kind StorageV2 -SkuName Standard_GRS -AccessTier Hot

Command3:

Creating StorageV1:

New-AzureRmStorageAccount -ResourceGroupName sandbox -AccountName testlab140 -Location centralUS -Kind Storage -SkuName Standard_GRS