Book Image

Hands-On Networking with Azure

By : Mohamed Waly
Book Image

Hands-On Networking with Azure

By: Mohamed Waly

Overview of this book

Microsoft Azure networking is one of the most valuable and important offerings in Azure. No matter what solution you are building for the cloud, you'll fi nd a compelling use for it. This book will get you up to speed quickly on Microsoft Azure Networking by teaching you how to use different networking services. By reading this book, you will develop a strong networking foundation for Azure virtual machines and for expanding your on-premise environment to Azure. Hands-On Networking with Azure starts with an introduction to Microsoft Azure networking and creating Azure Virtual Networks with subnets of different types within them. The book helps you understand the architecture of Azure networks. You will then learn the best practices for designing both Windows- and Linux-based Azure VM networks. You will also learn to expand your networks into Azure and how to use Azure DNS. Moreover, you will master best practices for dealing with Azure Load Balancer and the solutions they offer in different scenarios. Finally, we will demonstrate how the Azure Application Gateway works, offering various layer-7 load balancing capabilities for applications. By the end of this book, you will be able to architect your networking solutions for Azure.
Table of Contents (15 chapters)
Title Page
Dedication
Packt Upsell
Contributors
Preface
Index

Automating tasks


Let's automate the manual tasks that have been implemented so far.

Creating an Azure VM using Azure PowerShell

First, we need to retrieve the virtual network information and store it in a variable by running the following cmdlet:

$VNet = Get-AzureRmVirtualNetwork -Name PSVNet -ResourceGroupName PacktPub

The same also applies for the NSG, which is performed by running the following cmdlet:

$NSG = Get-AzureRmNetworkSecurityGroup -Name PSNSG -ResourceGroupName PacktPub

Next, we need to create a public IP by running the following cmdlet:

$PIP = New-AzureRmPublicIpAddress -ResourceGroupName PacktPub -Location WestEurope -AllocationMethod Dynamic -Name PacktPubVMPIP

After that, we have to create an NIC for the VM by running the following cmdlet:

$NIC = New-AzureRmNetworkInterface -ResourceGroupName PacktPub -Location WestEurope -Name PacktPubVMNIC -SubnetId $VNet.Subnets[0].Id -PublicIpAddressId $PIP.Id -NetworkSecurityGroupId $NSG.Id

Now we're done with the VM networking part. The next...