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.
What is the health probe?
The health probe is to monitor the backend VMs to make sure they are healthy before the load balancer will send traffic towards it.
What are load balancing rules?
These are rules used to map the traffic from the user to the backend VMs
What are the benefits to using a basic load balancer?
- This can support up to 300 instances in the backend pool
- The backend VMs can be in an availability set or scale set
- Health probes can only be TCP or HTTP
- No SLA
What are the benefits to using a standard load balancer?
- This can support up to 1000 instances in the backend pool
- The backend pool can contain any VM or VM scale set in a Vnet
- Health probes can only be TCP, HTTP or HTTPs
- SLA of 99.99%
What is a public load balancer?
This is a load balancer is getting incoming traffic from the internet using a public IP