
Preface
[ xii ]
What this book covers
Chapter 1, Azure Virtual Network, teaches you about the basics of Azure networking,
such as creating Azure VNets, designing address spaces and subnets. This will lay
the foundation for all future recipes in this book.
Chapter 2, Virtual Machine Networking, covers Azure Virtual Machines (VMs) and the
network interface that is used as a connection between Azure VMs and Azure VNets.
Chapter 3, Network Security Groups, contains sets of rules that allow or deny specic
trafc access to specic resources or subnets in Azure. A Network Security Group
(NSG) can be associated with either a subnet (applying security rules to all resources
associated with the subnet) or a Network Interface Card (NIC) (applying security
rules only to the VM associated with the NIC).
Chapter 4, Managing IP Addresses, covers types of IP addresses, both private and
public. Public addresses can be accessed over the internet. Private addresses are from
the Azure VNet address space and are used for private communication on private
networks. Addresses can be assigned to a resource or can exist as a separate resource.
Chapter 5, Local and Virtual Network Gateways, covers details of local and virtual
network gateways. These gateways are virtual private network gateways that are
used to connect to on-premises networks. They encrypt all trafc going between a
given Azure VNet and a local network.
Chapter 6, Creating Hybrid Connections, enables us to create secure connections to
Azure VNets. These connections can either be from on-premises or from other Azure
VNets. Establishing connections to an Azure VNet enables secure network trafc
between services that are located in different Azure VNets, different subscriptions or
services outside Azure (in different clouds or on-premises).
Chapter 7, DNS and Routing, enables us to host DNS domains in Azure. When using
Azure DNS, we use the Microsoft infrastructure for domain name resolution, which
results in fast and reliable DNS queries. The Microsoft Azure DNS infrastructure
uses a vast number of servers to provide great reliability and availability of the
service.
Chapter 8, Load Balancers, supports scaling and high availability for applications and
services. A load balancer is primarily composed of two components – a frontend and
a backend. Requests coming to the frontend of a load balancer are distributed to the
backend, where we place multiple instances of a service.