Azure Virtual Networks Flashcards
What is an ASG?
Azure Application Security Groups allows you to configure the network security as a natural extension of the structure of an application. This allows you to group VMs and define network security policies based on those groups.
What dose NSG stand for?
Network Security Group
What is an NSG?
NSG is a Network Security Group which is used to manage the ingoing and outgoing network traffic to an Azure resources like VMs, Web Applications, etc.
What dose ASG stand for?
Application Security Groups
What is Vnet Peering
This is used to connect different Vnets together
How to create subnet using Powershell
Net-AzVirtualNetworkSubnetConfig
How to create Vnet using Powershell
Net-AzVitualNetwork
How to create a public ip using Powershell
New-AzPublicIpADdress
How to create network security group using Powershell
New-AzNetworkSecurityGroup
How to create a network security rule using Powershell
New-AzNetworkSecurityRuleConfig
How to create network interface using Powershell
New-AzNetworkInterface
What is a user-defined routes?
User-Defined Routes allow you to define custom routing tables to control the flow of network traffic within your Azure virtual networks.
What is a benefit to having Vnet Service Endpoints
This will enhance the security of your Azure Service Resources by securely connecting them to the Vnet. This will also completely remove internet access to the resource, only allowing access via your Vnet.
What is Azure Alerts?
Azure Alerts will monitor device status and sent alerts to IT Admins when the alert has been trigged
What is a Azure Load Balancer?
This is used to distribute incoming traffic to backend VMs. This operates at layer 4 of the OSI model.
What are the different components of Azure Load Balancers
Azure Load Balancer
Backend VMs
Frontend IP config
Backend pool
Health probe
Load balancing rules
What are the two Azure Load Balancer SKU’s
Basic Load Balancer
Standard Load Balancer
What is the frontend IP config?
This is the IP address assigned to the load balancer. If you need load balance from the internet you can use public IP.
What is the backend pool?
This is the pool of VMs that the load balancers will distribute the traffic accross.