Wilson Mar bio photo

Wilson Mar

Hello!

Calendar YouTube Github

LinkedIn

vNets, Peering, NSG, CDN, Scaling with Load Balancers, Gateways, Firewall, Front Door, Traffic Manager, DDoS, to get AZ-700 certified.

US (English)   Norsk (Norwegian)   Español (Spanish)   Français (French)   Deutsch (German)   Italiano   Português   Estonian   اَلْعَرَبِيَّةُ (Egypt Arabic)   Napali   中文 (简体) Chinese (Simplified)   日本語 Japanese   한국어 Korean

Overview

STATUS: This is currently actively being edited.

NOTE: Content here are my personal opinions, and not intended to represent any employer (past or present). “PROTIP:” here highlight information I haven’t seen elsewhere on the internet because it is hard-won, little-know but significant facts based on my personal research and experience.

Here are the notes on Networking I took while studying for Azure certification exams, specifically the
exam AZ-700 “Designing and Implementing Microsoft Azure Networking Solutions available in July 2021 to become a Azure Network Engineer. SKills:

  • Design, Implement, and Manage Hybrid Networking (10% to 15%)
  • Design and Implement Core Networking Infrastructure (20% to 25%)
  • Design and Implement Routing (25% to 30%)
  • Secure and Monitor Networks (15% to 20%)
  • Design and Implement Private Access to Azure Services (10% to 15%)

https://github.com/ElYusubov/AWESOME-Azure-Bicep

https://github.com/HoussemDellai/azure-bicep-course

https://www.thomasmaurer.ch/2021/06/az-700-study-guide-microsoft-azure-networking-solutions

The Kitchen Sink

PROTIP: Plan out your network typology ahead of time to plan naming conventions of resources in a diagram such as this:

Tim Warner’s 6 hr Live AZ-303 cert class on OReilly teaches to his GitHub repo which includes a this full diagram:
warner-azure-frankenstein-V2-793x629

Monitoring

DIAGRAM: az-monitor-overview.svgClick here for full page.

Azure Monitor provides a single source for monitoring Azure resources. It collects and analyzes telemetry from Azure infrastructure and services, and from on-premises and other cloud environments. It also provides a customizable dashboard for viewing health and performance data for all your resources.

Hands-on start here

This page assumes you’ve absorbed my Azure onboarding instructions for skill at Portal GUI and CLI.

  1. In the Portal GUI, G+\ to Search for “Net” and there appears:

Hub-and-spoke

Use less code to define Hub-and-spoke by using for_each Terraform code explained in chapter 37 of the 1.5 hr Udemy video course: Terraform on Azure 2021 by Luke Orellana under Mike Pfiffer’s CloudSkills.io.

https://github.com/nicolgit/hub-and-spoke-playground provides Deployment Stacks A collection of BICEP/ARM templates that deploys on Azure a hub & spoke net topology aligned with Microsoft Enterprise scale landing zone ref architecture to use as playground for test and study. As bonus many scenarios with step-by-step solutions for studying and learning are also available

VNets (Virtual Networks)

Create a VNet with a name for specification when a VM is created later.

  1. Get to Virtual Networks by pressing G+\ to cursor to the Search bar, then type enough to select the service when it appears in the drop-down.

    “Create a virtual network to securely connect your Azure resources to each other.”

  2. Click “+ Create”.

    Azure Virtual Network (abbreviated “VNets”) is the fundamental building block for your private network in Azure. VNet enables many types of Azure resources, such as Azure Virtual Machines (VM), to securely communicate with each other, the internet, and on-premises networks. VNet is similar to a traditional network that you’d operate in your own data center, but brings with it additional benefits of Azure’s infrastructure such as scale, availability, and isolation.

    VNets define the communications and security boundaries that enable Azure resources to communicate with each other securely. VNets are the basic building blocks for securely isolating resources such as load balancers, virtual machines, etc.

  3. Subscription:

    LIMIT: 50-100 VNets are allowed per Azure Subscription.

  4. Resource Group:

  5. VNet Name: Naming Convention: PROTIP: Include the environment and region in the VNet name because a VNet controls network access within a single region/location. Include a zero-padded number in case several are needed. Example:

    prod-eastus-vnet01

  6. Region:

  7. Security tab:

    az-networking-single-vm-831x523.png

    All resources in a VNet can communicate outbound to the internet, by default.

  8. BastionHost: leave as Disable by default.

    Network Virtual Appliances (NVA) in the Azure Marketplace are specialized VMs that provide firewall, load balancing services. Service chaining across regions are less expensive than standing up

  9. DDoS Protection (see below) Standard: Enable

  10. Firewall: Enable

  11. IP Addresses tab:

    Each VNet is created by specifying a custom private IP address space using public and private (RFC 1918) addresses. For example, to deploy a VM in a VNet address space, 10.0.0.0/16, the VM will be assigned a private IP such as 10.0.0.4. (CIDR blocks which do not overlap).

    A portion of the virtual network’s address space is allocated to subnets to deploy Azure resources.

    IP Address Ranges

    To logically subdivide addresses, the “host identifier” portion of an IP address.

    Host CIDR Range Bits Addresses
    /16 ? 65,536
    /24 ? 256
    /32 ? ?

    REMEMBER: Azure takes for its own the first 3 and the last address of each subnet:

    • x.x.x.0 - Network address
    • x.x.x.1 - Reserved by Azure for the default gateway
    • x.x.x.2 - Reserved by Azure for DNS
    • x.x.x.3 - Reserved by Azure for future use
    • x.x.x.255 - Network broadcast address. Azure does not allow traffic to this address.

Secure resources within subnets using Network Security Groups (NSGs).

Azure VNets manage User defined routes (UDR’s).

NOTE: Connect your virtual network to your on-premises network using an Azure VPN Gateway or ExpressRoute (see below).

Connection Verification: ICMP Ping

VIDEO: PROTIP: Azure blocks ICMP between VNets and the internet.

  1. To enable ICMP pings on each VM, use this PowerShell command:

    Set-ExecutionPolicy -ExecutionPolicy Bypass -Force
    New-NetFirewallRule -DisplayName 'Allow ICMPv4-In' -Protocol 'ICMPv4'
    
  2. To check whether another VM can reach another VM:

    Enter-PSSession -ComputerName 10.20.20.4
    ping -4 10.20.20.1
    

    TCPing.exe

    Because the ICMP protocol is usually blocked on servers to prevent network reconissance by malicous actors, probe servers using the TCP protocol by running “tcoping” from SysInternals.

  3. VIDEO:

    tcping.exe -p 3389 -n 8 10.20.20.1
    
  4. Test access of domain name:

    tcping.exe -p 80 -w 9  whatever.com
    
  5. Another PowerShell command:

    get-help -Name Test-NetConnection -Examples
    Test-NetConnection -ComputerName 10.20.20.1 -InformationLevel Detailed -TraceRoute 
    Test-NetConnection -ComputerName 10.20.20.1 -InformationLevel Detailed -CommonTCPPort RDP
    

Networking with VMs

Define Networking when creating a Virtual Machine:

  1. Define a VM, then specify it’s networking:

    PROTIP: Define conventions for naming variables in PowerShell:

    $rgName = "TestGroup"
    $myLocation = "eastus"
    $vmName = "FileSystemTestVM"
    $vnetName = "TestGroupVnet"
    $subnetName = "default"
    $nicName = "newnic"
     
    # Deallocate vm:
    Stop-AzVM -Name $vmName -ResourceGroupName $rgName
     
    # Get VM config:
    $vm = Get-AzVM -Name $vmName -ResourceGroupName $rgName
     
    # Create New VNet:
    $myVnet = New-AzVirtualNetwork -AddressPrefix "10.20.0.0/16" `
    -Name $vmName -ResourceGroupName $rgName -Location $myLocation
     
    # Get info for backend subnet:
    $myVnet = Get-AzVirtualNetwork -Name $vmName -ResourceGroupName $rgName
    $backEnd = $myVnet.Subnets|?{A$_.Name -eq $subnetName}
    

The larger the AddressPrefix suffix /16 in “10.20.0.0/16” that smaller the subnet.

5 addresses in each subnet are reserved by Azure for overhead functionality.

Virtual Networks resources

  1. In the top Search field, type enough of Virtual network and press return to select the service. Its menu:


Network Performance Monitor

  1. In the Portal, click “+” at the upper-left corner for the Marketplace.
  2. In Search, Type enough of “Network Performance Monitor” to select it.

    Notice it’s from Solarwinds.

  3. Click “Create”.
  4. Create Resource group.
  5. Select choices to create a VM instance.

Network interfaces

Within a particular Virtual Machine:

  1. Network Interface

    • Overview
    • Activity log
    • Access control (IAM)
    • Tags

    • IP configurations
    • DNS servers
    • Network security group
    • Properties
    • Locks
    • Export template

Typically, because VMs are setup as a cluster behind a Load Balancer, most VMs do not accept traffic directly from the public internet.

JIT

Many organizations prefer that a new instance be created with changed settings rather than mucking about in running servers.

Rather than defining a Network Security Group to expose a static IP address for RDP/SSH for administrative access, use JIT that opens ports for a limited time only when needed.

Static Public IP Configuration

  1. Before making it public, setup a Network Security Group (NSG) to protect the VM’s network interface. Enable Windows Defender? You always get 3 inbound security rules by default:

    az-networking-default-inbound-nsg-997x217

    REMEMBER: Lower Priority numbers are the most urgent (more priority).

  2. Click “IP configurations” within Network Interface within a particular VM.

  3. Click on “ipconfig1”, the default Name of the Primary Private IP (PIP) address created automatically.

  4. Enable “Public IP address” for the “Choose public IP address” dialog. “+ Create New”. Change the Name according to your Naming Conventions.

    “Assignment” (Dynamic or Static) apply only to Basic.

  5. Click “Standard” (which costs extra) when working with Availability Zones.

    PROTIP: Unlike AWS, Azure doesn’t give you a choice of Public IP address.

    Assignment: Dynamic is the default.

  6. Select Assignment: Static and specify an IP address (such as 10.0.1.10)
  7. Save!

    CAUTION: A reboot of the VM is necessary when the IP changes.

Subnets

Subnets group

Subnet Name Address CIDR IPv4 available addr.
front 10.0.1.0/24 249
back 10.0.2.0/24 249
bastion 10.0.3.0/24 250

CIDR = Classless Inter-Domain Routing.

VNet Peerings

VIDEO:

  • Connecting VNets in the same region is called Virtual Network Peering.
  • Connecting VNets between separate regions (and Subscriptions) is called Global VNet Peering.

VNets in different regions can connect using either VPN gateways or Global Peering:

Item Global VNet Peering VPN Gateways
Privacy: Routed through Microsoft's private backbone. No public internet involved Public IP involved
Pricing: Ingress/Egress Hourly + Egress
Bandwidth limitations: No bandwidth limitations Varies based on SKU. See Gateway SKUs by tunnel, connection, and throughput
Limit per virtual network: Up to 500 virtual network peerings per virtual network One VPN gateway per vNet. Max. tunnels per gateway based on the gateway's SKU
Encryption: Software-level encryption is recommended Custom IPsec/IKE policy can be applied to new or existing connections.
Advantages: Data replication, database failover Encryption takes time
Disadvantages: frequent backups of large amount of data Lower latency and throughout
Transitive (peer of peers) Peering connections are non-transitive. But transitive networking can be achieved using NVAs or gateways in the hub virtual network. See Hub-spoke network topology for an example. If virtual networks are connected via VPN gateways and BGP is enabled in the virtual network connections
Initial setup time: Few minutes ~30 minutes

To peer virtual networks involving separate subscriptions in different Azure Active Directory tenants, the administrators of each subscription (both) must grant the peer subscription’s administrator the Network Contributor role on their virtual network.

  1. In a Virtual Network,
  2. Click “Peerings” on the left menu.
  3. In Peer details: virtual network deployment model: leave as default “Resource manager” (rather than “Classic”).

  4. In Configuration: Allow virtual network access: click “Enabled”

  5. For “Allow forwarded traffic” leave blank

  6. For “Allow gateway transit” leave blank

  7. For “Use remote gateways” leave blank

Azure Express Route on-prem networking

ExpressRoute Hub-spoke*

VIDEO: Azure ExpressRoute routes traffic through dedicated private connections between the on-premises network and Azure rather than going over the public internet. This achieves greater resilience, faster speeds, higher security, and lower latency. But it’s considered expensive.

ExpressRoute can exist alongside current site-to-site, point-to-site, or VPN-to-VPN connections.

ExpressRoute must have a private connection provided by a connectivity partner in one of three ExpressRoute connectivity types:

  • The “CloudExchange co-location” method connects to Azure by using the Ethernet exchange provided by a co-location facility.

  • The “Any-to-any (IPVPN) Connection” method integrates a WAN with Azure by using an IP Virtual Private Network provider. This connection type links branch offices with datacenters. When it’s enabled, the connection to Azure is similar to any other branch office that’s connected via the WAN.

  • The “Point-to-point Ethernet Connection” method connects on-premises datacenters and offices to Azure through a point-to-point Ethernet link.

QUESTION:

  • A Site-to-site VPN (S2S VPN) sends traffic between on-premises VPN devices and an Azure VPN Gateway deployed in a virtual network. This connection type enables any on-premises resources to access a virtual network through an encrypted tunnel through the public internet.

  • A Point-to-site virtual private network (P2S VPN) sends traffic though an encrypted tunnel over the internet between a virtual network and a individual computer (point) in your network. This connection type is convenient during development because it requires little or no changes to the existing network.

Connections through am on-premises network using an Azure VPN Gateway or ExpressRoute connection can propagate on-premises Border gateway protocol (BGP) routes to virtual networks. Custom route tables can be created for each subnet to control where traffic is routed to.

Service endpoints allow service resources to be secured to the virtual network.

ExpressRoute bandwidth speeds come in fixed tiers shared across any peering in the circuit: 50 Mbps, 100 Mbps, 200 Mbps, 500 Mbps, 1 Gbps, 10 Gbps, 100 Gbps

ExpressRoute doesn’t support the Hot Standby Router Protocol (HSRP). You’ll need to enable a Border Gateway Protocol (BGP) configuration.

ExpressRoute uses network Layer 3 connectivity and security standards. Operating on a Layer 3 circuit requires a network security appliance to manage threats. To improve network security, ExpressRoute requires network security appliances between the provider’s edge routers and your on-premises network.

Monitoring the connectivity between your on-premises network and Azure must use the Azure Connectivity Toolkit.

This reference architecture of a secure hybrid perimeter network which extends an on-premises network into Azure, in order to have granular control over traffic entering an Azure virtual network from an on-premises datacenter.

az-onprem-net-989x397.png

The gateway (in its own subnet) provides connectivity between routers in the on-premises network and the virtual network.

In the gateway subnet, traffic sent to the web-tier subnet (10.0.1.0/24) is routed through the Azure Firewall instance. All inbound and outbound traffic pass through Azure Firewall, a managed firewall as a service. The Firewall instance is placed in its own subnet.

Virtual network routes define the flow of IP traffic within the Azure virtual network. In the diagram shown above, there are two user-defined route tables.

In the web tier subnet, since there is no route for address space of the VNet itself to point to Azure firewall, web tier instances are able to communicate directly to each other, not via Azure Firewall.

Network security groups (NSGs) are used restrict network traffic within the virtual network. For example, in the deployment provided with this reference architecture, the web tier subnet allows TCP traffic from the on-premises network and from within the virtual network; the business tier allows traffic from the web tier; and the data tier allows traffic from the business tier.

Azure Bastion allows management access into VMs through SSH or remote desktop protocol (RDP) without exposing the VMs directly to the internet.

Additionally, auditing of outgoing traffic is usually a regulatory requirement for many commercial systems and can help to prevent public disclosure of private information. DLP (Data Loss Prevention)

Scaling/Spreading traffic

VIDEO: Ways to spread load:

  • Azure Front Door provides functionality of Traffic Manager, App Gateway, CDN, and DDoS protection.
  • Traffic Manager is a DNS “referral engine” routing IP addresses globally across geographic regions

REMEMBER: Use either Traffic Manager or Front Door, not both.

  • App Gateway for URI routing with App Firewall
  • F5 (third-party virtual appliance) NVA (Network Virtual Appliance) hardware
  • Azure Load Balancer performs Network Load balancing
  • Load balancers (Basic and Standard) across VMs
  • ILB (Internal Load Balancers)

Peering of regions connects without creating a gateway, which are charged by hour and bytes egress, which introduces extra latency with limited bandwidth.

DNS

Resources in virtual networks can resolve domain names to internal IP addresses in one of three methods:

  • Azure DNS private zones - the preferred solution due to its flexibility in managing DNS zones and records

  • Azure-provided name resolution provides HA with no configuration, but provides only basic authoritative DNS capabilities. Appropriate DNS suffix are automatically applied to virtual machines. All other options you must either use Fully Qualified Domain Names (FQDN) or manually apply appropriate DNS suffix to virtual machines.

  • Custom-managed (your own) DNS servers (which might forward queries to the Azure-provided DNS servers)

QUESTION: https://www.skillpipe.com/#/reader/urn:uuid:c320b85e-9d97-556a-8f4e-b22a78aebc6d@2021-05-14T08:45:09Z/contentdns

In virtual networks deployed using the Azure Resource Manager (ARM) deployment model, the DNS suffix is consistent across all virtual machines within a virtual network, so the FQDN is not needed. DNS names can be assigned to both VMs and network interfaces.

VMs and instances in a cloud service share the same DNS suffix, so the host name alone is sufficient. But in virtual networks deployed using the classic deployment model, different cloud services have different DNS suffixes. In this situation, you need the FQDN to resolve names between different cloud services.

https://docs.microsoft.com/en-us/cli/azure/network/dns?view=azure-cli-latest

Test-AzDnsAvailability

VIDEO:

  1. To set

    ...
    Get-AzureRmDnsRecordSet -ZoneName -ResourceGroupName $rgName
    Set-AzureRmDnsZone -Name $zoneName -ResourceGroupName $rgName -RegistrationVirtualNetworkId @($vnet1.Id)
    Set-AzureRmDnsZone -Name $zoneName -ResourceGroupName $rgName -ResolutionVirtualNetworkId @($vnet2.Id)
    

Custom DNS Servers

Forwarding queries allows VMs to see both on-premises resources (via the DC) and Azure-provided host names (via the forwarder). Access to the recursive resolvers in Azure is provided via the virtual IP 168.63.129.16.

DNS forwarding enables DNS resolution between virtual networks and allows on-premises machines to resolve Azure-provided host names. In order to resolve a VM’s host name, the DNS server VM must reside in the same virtual network, and be configured to forward host name queries to Azure.

Because the DNS suffix is different in each virtual network, conditional forwarding rules send DNS queries to the correct virtual network for resolution. The following image shows two virtual networks and an on-premises network doing DNS resolution between virtual networks, by using this method.

A role instance can perform name resolution of VMs within the same virtual network. It does so by using the FQDN, which consists of the VM’s host name and internal.cloudapp.net DNS suffix. However, in this case, name resolution is only successful if the role instance has the VM name defined in the Role Schema (.cscfg file). <Role name=”role-name>” vmName=”vm-name”>.

Role instances that need to perform name resolution of VMs in another virtual network (FQDN by using the internal.cloudapp.net suffix) have to do so by custom DNS servers forwarding between the two virtual networks.


Azure Front Door

Azure Front Door routes by Layer 7 URLs with session affinity, URL redirection, URL rewrite.

az-frontdoor-1041x509.png

In the diagram above, Azure Front Door endpoint provides routing to two geo-distributed sets of a microservices Web App (not just VMs) on multiple regions for redundancy (active/passive standby).

Like CDNs, it uses TCP-based anycast protocol ensures connection to closest endpoint.

Can handle IPv6 and HTTP/2 traffic.

It can handle certificate management and do TLS termination (sending HTTP traffic downstream).

Azure Front Door doesn’t route by geo (DNS).

Traffic Manager

az-loadbal-1149x801

Traffic Manager is not geographically tied to Azure regions.

It uses DNS to direct requests to the most appropriate endpoint.

https://your_name.trafficmanager.net

DOCS: Routes based on 7 different methods:

  • Performance for users to use the closest endpoint for the lowest network latency, based on “Real user measurements” embedded in app code
  • Weighted (for Canary deploy)
  • Priority
  • Geographic based on DNS origin (for data soverignty)
  • Multivalue (only IPV4/V6)
  • Subnet to specific end-user IP addresses to speific endpoints

All Traffic Manager profiles have endpoint health checks and automatic failover.

It generates a heat map of connections.

Azure Load Balancers

DOCS:

Azure Load Balancers direct Layer 4 incoming traffic based on a 5-tuple hash to multiple resources such as virtual machines.

  1. Portal: Create a resource -> Networking -> (in Azure Marketplace) Load Balancer.

    LB Front-end

  2. Create LB front-end: Name:
  3. Type: Internal or Public (select or create VNet and subnet)
  4. IP address assignment: Choose Dynamic. Static not
  5. Subscription
  6. Resource Group
  7. Location

    LB Back-end pool

    VIDEO:

  8. Back-end pools -> Add -> Associate to: REMEMBER:

    • Unassociated
    • Single virtual machine
    • The Basic (HTTP) Load Balancer is scoped to an Availability Set - up to 100 instances.
    • The Standard (HTTPS) Load Balancer is scoped to Availability Zones</stong> on the entire virtual network - up to 1,000 instances.

  9. Target network IP configurations (for each VM within current availability set)

    To distribute traffic to the VMs, a backend address pool contains the IP addresses of the virtual (NICs) connected to the Load Balancer.

    Type a name for your Backend pool, then select Add.

    LB Health probe

    Service monitoring probes.

    Automated reconfiguration.

  10. Use LB

LAB:

  1. On the dashboard of the Azure Portal, click the portal menu > All resources:
  2. On the All resources modal, click caLabsLB:

    This will bring you to the Overview blade for the caLabsLB load balancer.

  3. On the Overview blade, notice:

    As with any VNet, the load balancer is deployed under a Resource group and Subscription.

    The load balancer has a Public IP address which accepts incoming traffic on before redirecting to the backend pool.

  4. In the menu to the left, click +++ Load Balancing Rules.
  5. On the Rules blade, click LBRule for the information blade for the LBRule load balancing rule:

    Notice: The rule has a Port and a Backend port value. The Port value is the port the load balancer will listen for traffic on. In this case, the port is 80, meaning that the load balancer will listen for HTTP traffic (traffic on port 80). A backend port is a port that can optionally be different from the port, in case you want to accept traffic from one port on the load balancer and direct it to a different port on your targets (such as virtual machines).

    The rule has a Health probe set to tcpProbe (TCP:80). This means that the load balancer will occasionally send test traffic to the targets in its backend pool to ensure the health of the targets. In this case, TCP:80 means that the load balancer will send test TCP data over port 80 to its targets.

    The rule has a Backend pool set to BackendPool1. This is the backend pool that will accept traffic from the load balancer. A backend pool is a target for load balancers to direct their incoming traffic to, and contain at least one target, such as a web server on a virtual machine.

  6. At the top of the page, click caLabsLB - Load balancing rules to return to the menu:
  7. In the menu, click Backend pools:
  8. Click the arrow to the left of Backendpool1 to expand it:

    The load balancer will alternate traffic between virtual machines in the backend pool.

    Each VM is attached to one of two network interfaces which accept and send traffic.


Coursera Guided Project

Guided Project: Introduction to Virtual Networks by Brendan McKeown

Starting an Azure Cloud Shell

HANDS-ON LAB:

To deploy a container and file blob to a storage account, to be served through a CDN, use Cloud Shell that runs on a temporary host that is free to use. Cloud Shell is backed by an Azure file share that persists a clouddrive home directory. You only pay for the required file share storage.

You are a regular user without the ability to obtain root/administrator privileges.

PROTIP: The cloud shell times out after 20 minutes of inactivity.

  1. Click on the >_ Cloud Shell icon in the menu bar of the Azure Portal Dashboard:

This will open a Cloud Shell console at the bottom of your browser window.

+++ Select Bash or PowerShell. You can change shells any time via the environment selector in the Cloud Shell toolbar. The most recently used environment will be the default for your next session.

  1. Select Bash for your shell experience:
  2. Click on Show advanced settings to configure the shell to use existing storage resources:
  3. Set the following values in the Cloud Shell storage configuration form, and then click Create storage:

Subscription: Leave the default value Cloud Shell region: Choose the South Central US region (The Cloud Academy Lab environment created a storage account for you in this region.) Resource group: Use existing. Select the resource group beginning with cal- Storage account: Use existing. Select the only storage account available or the one beginning with cacloudshell if there are multiple File share: Create new. Enter cloudshell for the name of the file share

Warning: Make sure to select the region described in the instructions. The image above is only demonstrative.

Warning: If you still can’t reach the storage account, make sure the deployment reached 100%. You can check it under Resource groups -> ca-lab-### -> Deployments.

The file share creation should complete within a few seconds, and your Cloud Shell will display progress as it initializes.

  1. Wait until you see the prompt ending with $ indicating your Cloud Shell is ready to use:

Validate Understanding Core Azure Networking Products

Azure Playground at https://cloudacademy.com/lab/azure-playground-2747/

Network Watcher

Network Watcher is a suite of tools:

VIDEO:

CLI:

az network watcher configure--locations $LOCATION --enabled -o table \
     --resource-group $MY_RG 
   
  1. In the Portal, search for “Network Watcher”.

    Notice it runs on a regional level.

  • Diagram

To generate a visual to view VNet layout Topology. Downloads an SVG graphic image.

To track connection reachability, use Connection monitor which measures latency and topology changes.

To check connectivity check from Azure VMs to some other endpoints, use IP flow verify. It shows 5 tuples: source & destination IP address, ports, protocol.

To check direct TCP connetion with any endpoint more comprehensively than IP flow verify, use Connection troubleshoot.

To verify routing paths, use Next hop.

To analyze NSG rules, use Effective security rules.

For deep logging of VPN Gateway, use VPN troubleshooting.

To gather ethernet frames for analysis by WireShark or MMA, use Packet capture.

Diagnose and solve issues such as:

  • VNet traffice filtering
  • Network routing
  • VPN/gateway connectivity

https://azure.microsoft.com/en-us/pricing/details/virtual-network/

DDoS (Distributed Denial of Service) attacks

  1. Among services, search “DDOS” for the “DDoS Protection Plan”.
  2. View Pricing.
  3. Click “Create”.
  4. Naming convention: “DDOS”
  5. Create a new resource group?
  6. Select Location
  7. Create.

  8. In Metrics, select the firewall network group.
  9. Among metrics (all Inbound):
    • bytes, dropped, forwarded
    • packets, dropped, forwarded
    • TCP/UDP bytes, dropped, forwarded
    • SYN packets to trigger DDoS mitigation
    • Under DDoS attack or not has a binary values: 0 is no, 1 if yes.

  10. When a network is created, the DDOS plan can be selected after “Standard” plan is paid.

Zone-redundant gateways

If you select a region that supports availability zones, VPN and ExpressRoute gateways can be deployed in a zone-redundant configuration which brings resiliency, scalability, and higher availability to virtual network gateways.

Deploying gateways in Azure Availability Zones physically and logically separates gateways within a region, while protecting on-premises network connectivity to Azure from zone-level failures.

However, that requires different gateway SKUs and leverage Standard public IP addresses instead of Basic public IP addresses.

PROTIP: The list of all “Azure IP Ranges and Service Tags – Public Cloud” from https://www.microsoft.com/en-us/download/details.aspx?id=56519 downloads file ServiceTags_Public_20210419.json containing (at time of writing) 77,960 lines with these grouping names:

  • ActionGroup
  • ApplicationInsightsAvailability
  • AzureActiveDirectory
  • AzureAdvancedThreatProtection
  • ApiManagement etc.
{
  "changeNumber": 144,
  "cloud": "Public",
  "values": [
    {
      "name": "ActionGroup",
      "id": "ActionGroup",
      "properties": {
        "changeNumber": 9,
        "region": "",
        "regionId": 0,
        "platform": "Azure",
        "systemService": "ActionGroup",
        "addressPrefixes": [
          "13.66.60.119/32",

Add Network Interface in VM

VIDEO

Multiple NICs for load balancers, isolation.

VM needs to be in stopped/deactivated to remove or add NIC. (Create, then Attach)

VIDEO Powershell to add (create) network interface

$location = "CentralUS"
   $vnetName = "TestGroupvnet"
   $subnetName = "default"
   $rgName = "TestGroup"
   $vmName = "FileSystemTestVM"
   $nicName = "newnic"
 
   # Deallocate vm:
   Stop-AzVM -Name $vmName -ResourceGroupName $rgName
 
   # Get VM config:
   $vm = Get-AzVM -Name FileSystemTestVM -ResourceGroupName $rgName
 
   # Get info for backend subnet:
   $myVnet = Get-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgName 
   $backEnd = $myVnet.Subnets|?{$_.Name -eq} $subnetName}
 
   # Create virtual NIC:
   $newNic = New-AzNetworkInterface -ResourceGroupName $rgName 
      -Name $nicName
      -Location $location
      -SubnetId $newNic.Id
 
   # Get ID of new virtual nic and add to VM:
   $nicId = (Get-AzNetworkInterface -ResourceGroupName $rgName -Name $nicName).Id
   Add AzVMNetworkInterface -VM $vm -Id -Primary | Update-AzVm -ResourceGroupName $rgName 

Hands-on

  1. On the dashboard of the Azure Portal, click the portal menu to select “All resources”.

  2. Among “All Resources”, select Virtual Networks.

    Alternately, click a Virtual Network resource (such as “calabs-vnet”).

  3. On the Overview blade, notice the information near the top of the page:

    Like other resources in Azure, each Virtual Network has a Resource group ID and a Subscription ID. This means that the virtual network belongs to a specific resource group and Azure subscription.

    Resource groups and subscriptions are two ways Microsoft uses to organize, track and bill for its resources.

    Location = Region

    The network also has a Location, which is the geographical region that holds the servers your network is hosted on.

    Address Space

    An Address space defines IP address which will have an address inside this range.

    Because 10.0.0.0/16 is a private address range, this network currently only hosts private resources, not visible to the public.

    CIDR block

    ??? CIDR block (RFC 1918) class A, B, C

    REMEMBER: Reserved ranges for private networks:

    • 10.0.0.0 - 10.255.255.255 (10/8 prefix)
    • 172.16.0.0 - 172.31.255.255 (172.16/12 prefix)
    • 192.168.0.0 - 192.168.255.255 (192.168/16 prefix)

    REMEMBER: Unavailable address ranges:

    • 127.0.0.0/8 (loopback local)
    • 169.254.0.0/16 (Link-local)
    • 168.63.129.16/32 (Internal DNS)
    • 224.0.0.0/4 (Multicast)
    • 255.555.255.255/32 (Broadcast)

  4. In the Menu to the left, click Connected Devices:

    There are currently two are Network Interfaces connected to this VNet.

    About each connected resource:

    • Each resource has an IP Address that falls within the address range.

    • Each resource also belongs to a subnet.

  5. In the Menu to the left, click Subnets:

    DEFINITION: A subnet is a way to further separate a VNet into smaller segmented networks. Subnets are used to increase the amount of organization and trackability of resources. Because you can apply different network security groups to different subnets, using subnets also potentially increases the security of your infrastructure.

    In the example, there are two subnets on the Subnets blade and that each one has an Address range that falls within the address range of the VNet. Click here for a refresher on how CIDR ranges work and an explanation of how the Address ranges of the subnets on this blade fall within the address range of the VNet.

    NIC (Network Interface Card)

  6. Return to the Connected devices blade
  7. Click “nic0” in the example.
  8. On the following blade, click “caLabsVM0”

    The Overview blade of the caLabsVM0 Virtual Machine (VM). This is because the network interface deployed to the VNet was attached to this VM.

    Network interfaces allow resources including VMs to communicate with other resources in Azure and on the Internet. Because this VM has a network interface attached and that network interface belongs to the VNet, this VM will be able to communicate with other resources in the VNet.


Azure Application Gateways

az-app-gateway-904x810.png

Application gateways can route based on URIs while load balancers route traffic purely based on IP address and port.

Application gateways can route traffic sent based on folder, which allows for more detailed control of routing.

Application Gateways can also accept traffic for more than one site using multiple site hosting – sending traffic from examplesite1.com to backend pool 1, traffic from examplesite2.com to backend pool2, and so on.

A single Azure Application gateway can manage up to 100 sites.

Application Gateways also offers SSL termination, connection draining, and request redirection.

LAB:

  1. On the dashboard of the Azure Portal, All resources, select “calabs-appGateway” predefined.
  2. On the Overview blade, notice:

    • The application gateway is deployed into the Virtual network/subnet, calabs-vnet/calabsappgatewaysubnet. Recall that this is the same VNet you have seen other resources deployed into, and a new subnet that you haven’t seen. Recall from a previous lab step that because the application gateway is deployed into its own subnet, it has a level of isolation from other resources deployed into the same VNet.

    • The application gateway can have a Frontend private IP address but not a Frontend public IP address. Recall from a previous lab step that this means the application gateway will be able to host private web applications, but not public ones. Based on what you’ve learned about networking so far, what does this mean for how you’d most likely use the application gateway? Here are two common scenarios:

    • The application gateway can host applications that are reachable by other services within the same VNet (things like APIs and microservices), which won’t be available to the public internet

    The application gateway can host private web applications, which you could reach from your on-premises network by connecting your local network and the VNet the application gateway is in, using a VPN gateway. This is commonly done for applications that companies don’t want anyone but employees to be able to find.

+++ Metrics:

  • Sum Total Requests
  • Sum Failed Requests
  • Sum Response Status by HttpStatus
  • Sum Throughput
  • Sum CurrentConnections
  • Avg Healthy Host Count By BackendPool HttpSettings
  • Avg Unhealthy Host Count By BackendPool HttpSettings

  1. In the menu to the left, click Backend pools and then click appGatewayBackendPool:

    Notice that similar to the load balancer covered in a previous Lab Step, this application gateway has a single backend pool with two targets.

  2. Click Cancel:
  3. In the menu to the left, click Listeners:

    Notice that there is a single listener. Currently, it listens to connections on port 80 and sends that request to a rule, rule1:

  4. In the menu to the left, click Rules:
  5. Notice that there’s a single rule, rule1, which you saw a moment ago. Click it:

    The rule is sending traffic to the backend pool you saw earlier, appGatewayBackendPool.

  6. Click calabs-appGateway - Rules at the top of the page:
  7. At the top of the Rules blade, click + Request routing rule:

Notice that at the bottom of this blade you’ve got the ability to set path-based rules.


Azure VPN Gateways

https://cloudacademy.com/lab/understanding-core-azure-networking-products/reviewing-azure-vpn-gateways/?context_id=524&context_resource=lp

Introduction Azure VPN Gateways are a type of Azure Virtual network Gateway which allows you to create secure connections between your on-premises network and an Azure Virtual Network (VNet). Azure uses leading security practices to protect data traveling between your on-premises network and your Azure network as if it were a single virtual private network (VPN). Among the benefits of this is the ability to use a hybrid infrastructure consisting of cloud and on-premises resources, with more security than you would get by simply handling your traffic over the public internet. In this Lab Step, you will navigate to an existing VPN gateway and learn about its fundamentals.

LEARN: You get 10 sandbox sessions per day (FREE) on labs, such as:

Instructions

  1. On the dashboard of the Azure Portal, click the portal menu > All resources:
  2. On the All resources blade, click caLabsGateway:
  3. Notice a few things on the resulting Overview blade:

The gateway has a Gateway type of VPN. While the scope of this Lab Step will only cover specifically VPN gateways, know that virtual network gateways can have more than one type.

The VPN gateway has been provisioned within a Virtual network, specifically the one you reviewed earlier. This means that by default, any traffic sent through the gateway will end up in this specific VNet until directed elsewhere.

The gateway also has a Public IP address. VPN gateways need a public IP address because although they create an environment that emulates a private network between your on-premises resources and your cloud resources, the traffic still technically needs to travel over the public internet to reach your VPN gateway. Once configured, your on-premises network will know to send its traffic to this public IP address.

  1. In the menu to the left, click Connections:
  2. Notice there aren’t currently any connections. Any connections here would mean that your gateway is currently connected to another gateway, such as the gateway of an on-premises network. At the top of the Connections blade, click Add:

alt

  1. In the Add connection blade, change Connection type to Site-to-site (IPsec):

+++ https://cloudacademy.com/course/overview-of-azure-services/azure-overview/

Public IP

To create a public IP:

az network public-ip create -g ps-course-rg -n MyIp

Azure Firewall

Firewall Manager used to set Azure Firewall Policies.

Layer 3-7 “Next Generation Firewall” (NGFW), like a packet filter, processes

Needs its own subnet to talk to the public internet.

treat it like a network appliance - UDR (user-defined routes)

https://docs.microsoft.com/en-us/azure/virtual-network/virtual-networks-udr-overview

Being SaaS, has built-in high availability, unrestricted cloud scalability.

Uses FQDN filtering rules. Provides threat intelligence based on known malicious IPs and FQDNs.

NAT, Availability zones

Takes an hour to build.

$10,000 per month?

VNet

Create VNet to an on-prem network securely by creating an Azure VPN Gateway which creates a Gateway subnet running 2 or more VMs running services. So it has some latency. It has bandwidth limitations.

  • VNet-to-VNet in diff. regions
  • Site-to-site (using IPsec) to another network’s VPN appliance on-prem.
  • Point-to-Site

ExpressRoute Circuit uses an MSEE router to access Azure:

  • ExpressRoute (allows users to extend on-premises networks into the Azure cloud using a dedicated, private connection that does not go over the public Internet)
  • ExpressRoute Direct physical port for up to 100Gps via

PRICING: It’s one of the most expensive services in Azure: $80,000/month.

The blade has a Virtual network gateway section set to the gateway you’re currently navigated to, and you can’t change it. This means that you’re attempting to create a connection from somewhere to your current VPN gateway.

The blade also has a Local network gateway section, which is the section that would contain information about the local network (such as your on-premises network) that you wish to connect to your VPN gateway.

CAUTION LIMIT: The maximum number of 10 network Azure ExpressRoute circuits per subscription.

  1. Click Choose a local network gateway and then Create new:

    Notice two fields here:

    The IP address field would contain the public IP address of the gateway of your on-premises network. Just like your VPN Gateway needed a public IP address so that your on-premises resources know how to find it, the opposite is true. The public IP address here will tell your VPN gateway where to send traffic when transmitting data to your local network.

    The Name field is where you would place a unique label on your connection, for easy organization.

Service Trust Portal

(Not Trust Center) provides useful links to assist organizations going through compliance audits based on standards like FedRAMP or ISO27001.

Trusted IPs

Each CIDR can be configured with up to 50 IP address ranges.

Also MFA Trusted IPs.

Network Peering

Global peering of two VNets connects different regions through Microsoft’s own internal backbone, not via the public internet. This needs to use Standard tier of load balancer (not Basic LB used by below):

  • Active Directory Domain Service
  • App Gateway v1
  • App Service Environment
  • Logic Apps
  • Service Fabric
  • Azure Batch
  • Redis Cadhe
  • HD Insight
  • Azure SQL Database Management Instance

PROTIP: Cross-tenant VNet Peering is configured not in GUI, but using CLI.

  1. Create two virtual networks.

    Reciprical connections: Two connections need to be setup to & from.

    NOTE: Cross-subscription peerings are supported.

  2. Peer the virutual networks.
  3. Create virtual machines on each network.
  4. Test communication between machines.

    Use Network Watcher

  5. Add peering blade
    • Allow forwarded traffic
    • Allow gateway transit
    • Use remote gateways

Peerings are not transitive: A - B, B - C, A cannot talk to C. So use Gateway Transit for that, which allows sharing a VPN or Express Route gateway across a peering. This minimizes complexisty and centralizes management.

There is a limit of 100 peering connections.

NSG (Network Security Groups)

VIDEO

  1. Create a Resource Group if you haven’t already.

  2. Search for “NSG” to use the wizard.

    NSGs can be applied to subnets or on network interface cards on each VM.

    NSG properties:

    • Protocol: TCP/IP, UDP
    • Source & Destination Port range
    • Source & Destination Address prefix
    • Direction (inbound or outbound)
    • Priority 100-4096 (order evaluated) where lower number have higher priority
    • Access (Allow/Deny)

    Default tags:

    • System provided
    • Virtual network
    • Azure laod balancer
    • Public Internet

    Subnet rules apply to ALL resources in subnet.

  3. Define Outbound security rules.
  4. Define Inbound security rules.

    When comparing network security options, a NSG (network security group) cannot Allow or deny inbound traffic to or from specific domain names, but Azure Firewall can.

Azure Firewall

Azure Firewall is a cloud-based, stateful service which limit outbound traffc based on an allowlist of FQDN (Fully Qulified Domain Names) and SQL traffic. Allow and deny lists can be centrally defined.

Azure Firewall adds “Threat Intelligence” about malicious IPs and FQDNs.

Azure Firewall has HA to span availability zones which boosts the standard SLA to 99.99% from 99.95%.

Azure Firewall provides outbound SNAT (Source Network Address Translation) and inbound DNAT (Destination Network Address Translation).

The competitor is Palo Alto.

Portal Monitor

  1. In the Portal, click “” ???

Azure CDN (Content Delivery Network)

Azure’s Content Delivery Networks (CDN) delivers data efficiently on a global scale by distributing content on more than one server in order to guarantee that when a user requests data, the data is on a server close enough to them to minimalize the amount of time the user has to wait for that data.

Azure installs CDN data on servers in point-of-presence (POP) locations all around the world to efficiently deliver data, regardless of the user’s location. Azure often uses something called a cache, which is a set of previously-stored data, to serve to users, so that new information doesn’t have to be requested and received every time. This greatly reduces the latency, or wait time, the end-user experiences.

DOCS LAB:

  1. Portal Menu > All resources:
  2. Click the Storage account beginning with storage:

    An Azure Storage Account contains your stored data objects in Azure. Azure CDNs use storage accounts to store data, and when data is requested by an end-user, the CDN searches for that data in a storage account.

    +++ Metrics:

    • Total egress (KiB)
    • Total ingress
    • Average Latency (ms)
    • Request breakdown (ClientOtherError & Success)

  3. In the Storage account menu, under Blob service, click Azure CDN:

    Notice that a CDN endpoint has already been provisioned:

    Note: If you don’t see an endpoint here, reload the page every few minutes until you do. It can take up to 10 minutes for the CDN to propagate.

  4. Copy the endpoint of the CDN and paste it into a new browser tab:

    Notice that currently, the endpoint results in a “Page not found” message. Currently the CDN points to a storage network that has no files stored on it. Next, you’ll upload a file to the storage account and see it take effect on the CDN.

  5. Use the Cloud Shell button you discovered in the previous Lab Step to open the Cloud Shell, if it’s not already open:

  6. Type touch example.html into the terminal and press enter to create a file called example.html.

  7. Click alt at the top of the Cloud Shell to open the Editor:

  8. Click example.html in the Files menu to open example.html.

  9. Type Hello from the Azure CDN! into the Editor on the right and press ctrl+s on Windows or Linux, or cmd+s on mac to save the file.

  10. Click the … at the top-right of the editor and click Close editor:

  11. In the terminal, enter the following command and press enter:

    storage_account=$(az storage account list –query [0].name -o tsv)

    This command will save the name of the storage account you’re working with to a variable called storage_account.

  12. Enter echo $storage_account to confirm the command worked:

  13. In the terminal, enter the following commands and press enter:

Copy code az storage container create –name calabscontainer –account-name $storage_account –public-access blob

az storage blob upload –container-name calabscontainer –account-name $storage_account –name example –file example.html

The first command creates a container, a service to segment data within storage accounts. The second command uploads the file you created as a blob to the container.

The end result is that example.html has been uploaded as a blob named example to a container, calabscontainer, which resides in the storage account you discovered earlier. If you'll recall, the CDN searches the storage account it's deployed to for resources, so you should be able to access your file through the CDN now (after adequate time to allow the file to propagate to the CDN POP locations).

Warning: The two commands will output a warning regarding authentication, don't worry about that and go to the next step.
  1. Click the X at the top-right of the Cloud Shell to close it.

  2. In the Storage account menu, under Blob service, click Containers:

  3. Click calabscontainer the container. Click example:

  4. In the resulting Blob blade, notice the URL field near the top. The URL corresponds to the URL of the blob in the storage account. Click the icon to the right of the URL to copy it:

  5. Paste the URL into a new browser tab:

    Despite the message, you have accessed the blob directly and not through the CDN. To access the file through the CDN you must use the CDN endpoint.

  6. Replace the URL domain with your CDN endpoint (preserving the /calabscontainer/example path):

Most likely you will get a Page not found message, since as you’ll recall the CDN stores data in servers around the globe, so propagation can take a bit of time (up to 90 minutes depending on the CDN configuration). That being said, if you were to wait long enough and refresh the page you would see the message you saved in example.html. This is how Azure CDN serves content stored in Azure efficiently to end-users around the world. It is also worth noting that you can use a custom domain with your Azure CDN so you can use your company’s web domain rather than the default CDN endpoint ending with .azuredege.net.

https://www.akamai.com/us/en/products/performance/


Video Courses

At Microsoft LEARN:

  • https://docs.microsoft.com/en-us/learn/paths/architect-network-infrastructure/

by Anand Rao Nednur at Udemy:

By Tim Warner at Pluralsight:

CloudAcademy

Quiz items

What resource can be used to control inbound and outbound access to network interfaces (NICs), VMs, and subnets? A Virtual Resource Managers (VRMs) B Virtual appliance C Router interface D Network Security Groups (NSGs)

You want to distribute the incoming requests for your application hosted on multiple virtual machines within a single virtual network. Which Azure networking resource should you deploy? A A traffic manager B A content delivery network C A load balancer D A virtual network gateway

NOT a feature of Azure Security Center: A VM recommendations such as OS patches B Alerts for suspected VM malware and potential SQL DB injection attacks C »> Invalid Azure Portal logins D Azure Storage recommendations

Azure Network Watcher Topology

  1. Get to the service “Network Watcher” for a URL such as:

    https://portal.azure.com/#view/Microsoft_Azure_Network/NetworkWatcherMenuBlade/~/overview/menuId~/%7B%22target%22%3A%7B%7D%7D

    View a topology:

  2. In the search box at the top of the Azure portal, enter Monitor. Select Monitor from the search results.
  3. In the Azure portal, get to the service “Monitor” for a URL such as:

    https://portal.azure.com/#view/Microsoft_Azure_Monitoring/AzureMonitoringBrowseBlade/~/overview

  4. Under Insights on the left menu, select Networks.
  5. Select Topology at the row.

    TODO: “We recommend using at most 10 subscriptions and 10 location filter values for optimal experience.”

    At the right pane:

  6. Click “Subscriptions” dropdown to select the subscription(s) to view.
  7. Click “Resources” dropdown to select the resource(s) to view.
  8. Click “Locations” (Regions) dropdown to select the location(s) to view.

    Above the Topology diagram:

  9. Click “Scope : “ to define the scope of the Topology.

  10. In the Select scope pane, select the list of Subscriptions, Resource groups, and Locations of the resources for which you want to view the topology. Select Save.
  11. Select the “Resource type : “ to display the list of resource types to view:

    • Application gateways
    • Load Balancers
    • PrivateLink services
    • Virtual WAN (Wide Area Network)
    • Azure front doors
    • Bastions

    Others?

    • Azure Bastion hosts
    • Azure Front Door profiles
    • ExpressRoute circuits
    • Network interfaces
    • Network security groups
    • Private endpoints
    • Public IP addresses
    • Virtual machines
    • Virtual network gateways
    • Virtual networks
  12. Select Apply to display.

Resources

To list hosts for the microsoft.com domain:

amass enum -active -d microsoft.com 

https://techcommunity.microsoft.com/t5/azure/my-learning-path-to-becoming-a-microsoft-certified-azure-network/m-p/3044581

More about Azure

This is one of a series about Azure cloud: