🥒
Dill's Knowledge Base
  • Hello World
  • 💻SQL
    • ❌Error Handling
    • 🧀Parameter Sniffing
      • Indexes
      • Query Hints
      • RECOMPILE
      • Branching
      • Memory Grants
      • Summary
      • Bonus
    • SQL Server Buffer Pool
  • 🖱️MongoDB
    • Instructor Led Training
      • DF100
      • DF200
      • DF300
      • DF400
    • MongoDB DBA University
      • DBA Admin Tools
      • DBA Basics
      • Metrics & Monitoring
  • 💻Web Design
    • Oxygen Tips
    • Bricks Builder
      • Tips
      • Discovery Call
      • Utility vs Custom Classes
      • Math Functions
      • Static vs Relative Units
  • Azure
    • AZ-900
      • Benefit of Cloud Computing
      • CapEx, OpEx and Consumption-based
      • Differences Between Cloud Service Categories
      • Identify The Right Service Type
      • Differences Between Types of Cloud Computing
      • Reliability and Predictability
      • Regions and Region Pairs
      • Availability Zones
      • Resource Groups
      • Subscriptions
      • Management Groups
      • Azure Resource Manager
      • Azure ARC
      • Resources Required for VM
      • Benefits and Usage of Core Compute Resources
      • Benefits and Usage of Core Network Resources
      • Public/Private Endpoints
      • Benefits and Usage of Storage Accounts
      • Benefits and Usage of Database Resources
      • Data Movement and Migration Options
      • Benefits and Usage of IoT Services
      • Benefits and Usage of Big Data and Analytics Services
      • Benefits and Usage of AI Services
      • Benefits and Usage of Serverless Technologies
      • Benefits and Usage of DevOps Technologies
      • Functionality of Azure Management Solutions
      • Functionality and Usage of Azure Advisor
      • Functionality and Usage of ARM Templates
      • Functionality and Usage of Azure Monitor
      • Functionality and Usage of Azure Service Health
      • Functionality of Microsoft Defender for Cloud
      • Functionality and Usage of Key Vault
      • Functionality and Usage of Microsoft Sentinel
      • Azure Dedicated Host
      • Defense in Depth
      • Describe the Concept of Zero Trust
      • Functionality and Usage of NSGs
      • Functionality and Usage of Azure Firewall
      • Functionality and Usage of Azure DDoS Protection
      • Explain Authentication and Authorization
      • Functionality and Usage of Azure AD
      • Microsoft Entra Overview
      • Functionality of Conditional Access, MFA and SSO
      • Functionality and Usage of RBAC
      • Functionality and Usage of Resource Locks
      • Functionality and Usage of Tags
      • Functionality and Usage of Azure Policy
      • Governance Hierarchy Constructs
      • Azure Blueprints
      • Describe Microsoft Privacy Statement, OST and DPA
      • Purpose of Trust Center and Azure Compliance Documentation
      • Purpose of Azure Sovereign Regions
      • Factors That Affect Costs
      • Factors to Reduce Cost
      • Functionality and Usage of Azure Cost Management
      • Purpose of Service Level Agreements
    • DP-900
      • Study Cram
    • DP-300
      • Deploy IaaS Soluton with Azure SQL
  • 📦Kubernetes
    • Udemy: Kubernetes for Beginners
Powered by GitBook
On this page
  1. Azure
  2. AZ-900

Benefits and Usage of Core Network Resources

https://www.youtube.com/watch?v=aNK0C9Oj2sg&list=PLlVtbbG169nED0_vMEniWBQjSoxTsBYS3&index=17

A virtual network resources can not span regions

  • It is confined by the subscription -> region

  • At least one IPv4 CIDR

    • Typically use RFC 1918

      • This was created so that each company could use the same IP internally, but when deploying externally it would translate publicly

  • A vnet might have several subnets

    • Ex. 10.01/24, 10.02/24, 10.3/24

    • vNets/subnets can span Availability Zones

    • In Azure you lose 5 IPs per subnet

  • When picking an address space, you must pick a unique one as otherwise things will start breaking

    • It is possible to "peer" networks, which provides the ability to allows vNets to connect to each other across regions or even completely separate tenants

    • This is where you must be careful that you don't overlap IPs

  • You can connect your on-prem network to Azures vNet

    • You can do this over the internet via a site-to-site VPN with a VPN gateway in Azure

      • Policy based gateways only allow for one connection, it is static, and is limited in use

        • This should be avoided

      • Route based gateways allows for multiple connections and allows for point-to-site

        • Some developer sitting at home might want to be part of the network

        • It also supports ExpressRoute, which is private

    • Lots of resources don't live in a vNet

      • Ex. Storage accounts

        • A storage account can have a publicly facing endpoint that has a firewall so you can allow services from external vNets

          • These are called Service Endpoints

        • Alternatively, you can disable the public IP of the storage account and instead use a private endpoint where you establish an IP within the vNet that the source resource is contained within to be able to communicate with the external storage account

PreviousBenefits and Usage of Core Compute ResourcesNextPublic/Private Endpoints

Last updated 2 years ago