AZ-700 Flashcards
Azure Virtual Network (VNet)
cloud representation of a physical network
divided into subnets
all VNets must have at least one subnet
handles DHCP services
can be secured using an ACL (NSG)
Public Prefix
Subnet
Virtual Machine
Network Interface Card
Virtual Network Gateway
DNS Zone
Private DNS Zone
VNet Peering
Virtual Hub
Virtual WAN
1 s2s scale unit = 500 Mbps
1 Express Route scale unit = 2 Gbps
VPN Site
similar to virtual gateway
Route Table
Load Balancer
Application Load Balancer
Traffic Manager
Azure Front Door Service
Rewrite set
Application Gateway
Forced Tunneling
Configure forced tunneling
1. Create a resource group.
New-AzResourceGroup -Name ‘ForcedTunneling’ -Location ‘North Europe’
- Create a virtual network and specify subnets.
- Create the local network gateways.
Example:
$lng1 = New-AzLocalNetworkGateway -Name “DefaultSiteHQ” -ResourceGroupName “ForcedTunneling” -Location “North Europe” -GatewayIpAddress “111.111.111.111” -AddressPrefix “192.168.1.0/24” - Create the virtual network gateway.
- Assign a default site to the virtual network gateway. The -GatewayDefaultSite is the cmdlet parameter that allows the forced routing configuration to work, so take care to configure this setting properly.
$LocalGateway = Get-AzLocalNetworkGateway -Name “DefaultSiteHQ” -ResourceGroupName “ForcedTunneling”
$VirtualGateway = Get-AzVirtualNetworkGateway -Name “Gateway1” -ResourceGroupName “ForcedTunneling”
Set-AzVirtualNetworkGatewayDefaultSite -GatewayDefaultSite $LocalGateway -VirtualNetworkGateway $VirtualGateway
- Establish the Site-to-Site VPN connections.
Details omitted.
ExpressRoute
Azure ExpressRoute offers three different circuit SKUs, known as Local, Standard, and Premium, which provide varying degrees of connectivity scope.
Standard: a Standard SKU ExpressRoute circuit provides connectivity to resources in all Azure regions in a geopolitical area. Under this scenario, the on-premises network in London can connect to resources and access Azure’s cloud services hosted in regions such as West Europe (Amsterdam, Netherlands) and France Central (Paris, France) through ExpressRoute
Premium: a Premium SKU ExpressRoute circuit facilitates connectivity to resources and cloud services globally across all Azure regions. Specifically, this global connectivity is delivered over the Microsoft core network. In this case, the on-premises network in London can link a virtual network created in West Europe (Amsterdam, Netherlands) to an Azure ExpressRoute circuit created in Japan East (Tokyo, Japan)
Basic Load Balancer
VMs behind Basic Load Balancers
Virtual machine scale sets with Basic Load Balancers
Redis Cache
Application Gateway (v1) SKU
Service Fabric
API Management (stv1)
Active Directory Domain Service (ADDS)
Logic Apps
HDInsight
Azure Batch
App Service Environment
You can connect to these resources via ExpressRoute or VNet-to-VNet through VNet Gateways.
Private IP Addressing
Available IPs is 5 less than the range - .0 = network, .1 = gateway, 2 & .3 = DNS, and .255 = broadcast
IPv4 is mandatory, IPv6 is optional
IPv6 is always /64
DHCP is default; static is optional
Public IP
Tied to regions
2 skus - Basic & Static
- Basic is dynamic or static and certain amount for free; open by default
- no AZ support
- Standard = static only; locked down by default; AZ support
- Sometimes SKU needs to match service. EG. Basic load balancer uses standard public IP