Configure name resolution and Load balancing Flashcards

1
Q

What is Azure DNS

A

A hosting service for DNS domains that provides name resolution by Microsoft infrastructure.

1.You can not register a domain name using Azure DNS. You can buy a name by using app service domains or third party domain name registrar

  1. Once that is done you can then host your domain in azure DNS by delegating the domain to azure DNS from parent domain
  • DNS forwarder is created by creating a DNS zone in azure. DNS zones are used to resolve DNS names to IP addresses.

-SOA - is automatically created when a DNS zone is created and contains information about you DNS zones.

  • Reverse lookup zone is used to convert IP address to domain names.

*NS record represents the name server that hosts the DNS zone for a DNS domain. You have to Create a name server record in your registrar to point to azure-dns servers

DNS uses both TCP and UDP . DNS requires communications over UDP as the primary protocol.
- If the DNS resolution times out over UDP , DNS will send the request over TCP but this will cause delays and slow resolution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Configure Azure DNS
https://learn.microsoft.com/en-us/azure/dns/dns-web-sites-custom-domain

https://learn.microsoft.com/en-us/azure/dns/dns-zones-records

A

Private DNS and public DNS

  1. Private DNS
    Manages and resolves domain names in the virtual network with out the need to configure a custom DNS solution
  • Azure DNS allows you to create private , non-publicly routable DNS zones that are bound to one or more VNets

Steps for on hosting you domain:
1.You can not register a domain name using Azure DNS. You can buy a name by using app service domains or third party domain name registrar.

  1. Create a zone
  2. Configure DNS records
  3. Create a name server record in your registrar to point to azure-dns servers
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a load balancer?

A

Distributing incoming network traffic across a group of backend servers or resources.

Frontend load balancer( Internal)

Backend load balancer( Public facing)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Configure internal or Public load balancer

A

Public load balancer:
-Provides outbound connections for vm inside your virtual network.
- Translates the private ip address of vm to a public ip.
- Used to load balance internet traffic to your vm’s

Internal or Private Load Balancer:
- used to load balance traffic inside a virtual network
- Load Balancer frontend can be accessed from an on prem network in a hybrid scenario

  • When a STANDARD load balancer is assigned multiple public IP it will use all assigned IP addresses at the same time
  • When a BASIC load balancer is assigned multiple public ip address all public IP’s are taken into consideration , but only one is used for the outbound flow
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Load Balancer SKUs

A

Standard , basic and gateway

Standard:
Equipped for load-balancing network layer traffic when high performance and ultra-low latency is needed. Routes traffic within and across regions, and to availability zones for high resiliency.

  • Multiple frontends - Inbound and outbound

Basic:
Equipped for small-scale applications that don’t need high availability or redundancy. Not compatible with availability zones.

  • Multiple frontends - Inbound only
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Troubleshoot load balancing

A

https://learn.microsoft.com/en-us/azure/load-balancer/load-balancer-troubleshoot-backend-traffic

How well did you know this?
1
Not at all
2
3
4
5
Perfectly