Implement and Manage Virtual Networking Flashcards
Configure and managed VNets, Secure access to VNets, Name resolution and load balancing
What is Session persistence: Client IP?
in load balancer context you can achieve clients talking to the same backend server via Session persistence. It is also known session affinity, source IP affinity, or client IP affinity. This distribution mode uses a two-tuple (source IP and destination IP) or three-tuple (source IP, destination IP, and protocol type) hash to route to backend instances.
What is a public DNS Zone?
A public DNS zone is a portion of the global Domain Name System (DNS) that is visible and accessible to the public. It contains information about domain names and their corresponding IP addresses, allowing users to access websites and other internet resources using human-readable domain names. Public DNS zones are managed by domain registrars, hosting providers, and other organizations responsible for maintaining the DNS infrastructure.
What is a VPN Gateway?
A type of networking device that allows secure communication between an Azure virtual network and an on-premises network or another virtual network. It provides a way to establish encrypted connections over the internet, enabling secure and private communication between different network environments.
What is a site to site VPN?
a type of VPN connection that enables secure communication between two or more geographically dispersed networks
What is a point to site VPN?
a type of VPN connection that allows individual client devices, such as laptops, desktops, or mobile devices, to securely connect to a remote network over the internet
What is the difference between point to site and point to site VPN services?
Unlike site-to-site VPNs, which connect entire networks, point-to-site VPNs establish encrypted connections between individual client devices and a central network or virtual network.
When do you have to re-download and re-install the VPN Configuration when using a point to site VPN service?
Whenever there is a change in network topology.
What is the difference between private/internal and public load balancer?
Private/internal load balancers distribute traffic to resources inside of a virtual network. Public balances public traffic to your virtual machines.
Internal load balancers distribute traffic within a VNET while public load balancers balance traffic to and from an internet-connected endpoint.
What is WAF and what kind of application gateway supports it?
WAF=Web Application Firewall
a security feature that can be integrated with a load balancer to protect web applications from various types of cyber threats and attacks, such as SQL injection.
Application Gateway WAF Tier supports it, Standard tier does not.
What is azure application gateway?
A web traffic load balancer that enables you to manage traffic to your web applications. For example, you can route traffic based on the incoming URL. So if /images are in the incoming URL, you can route traffic to a specific set of servers (known as a pool) configured for images. If /video is in the URL, that traffic is routed to another pool that’s optimized for videos.
Can VNet peering work across Microsoft Entra Tenants?
Yes! This is because the networks are both within Azure.
What are the two ways you can connect two virtual networks?
VNet Peering & VPN Gateways
Peering = Connecting two networks in Azure, with low latency (few hops) and does not involve the public internet
Gateways= values encryption due to use over public internet
When deploying connecting an on premise network to an azure vnet/subnet, what is the order of steps to take?
1) Deploy a gateway subnet -> required to configure VNet Gateway (step 2)
2) Deploy a VPN Gateway in Azure
3) Deploy a local network gateway
4) Deploy VPN to link azure and local gateways
What are the differences between the standard load balancer and the basic load balancer?
https://media.tutorialsdojo.com/BasicLoadBalancer.PNG
Backend:
- pool size
- pool endpoints
- health probe protocols & down behavior
- availability zones
- …
What is DNS Zone file import? And what azure utilities support it?
A DNS zone file is a text file that contains details of every Domain Name System (DNS) record in the zone. This can be imported to Azure via the CLI and portal.
Powershell and cloud shell don’t support this import.