1_2Design Azure virtual networks, networking services, DNS Flashcards
Topic
Answer
Operate remotely Azure
Using remote desktop or Secure Shell (SSH)
Azure Virtual Networks
Vms deployed on a virtual network can communicate with one another as if they were on a LAN
Creating a cloud-only virtual network
You can create a new virtual networ using Azure management portal, Azure PowerShell, and xplat-cli
Virtual Network Details
Wizard requires: 1)Name of the courd virtual network, 2)suscription, 3)location -Azure region-
DNS Servers and VPN Connectivity page
When you manage a larger virtual network you might want to create multiple subnets to improve performance. And also for manageability (i.e. for business area or type of processing -web servers, file, etc-)
CIDR Notation
Classless Inter-Domain Routing (CIDR) notation is a representation of a subnet mask.
SUBNET BITS and the number of SUBNETS
Your subnet take anumber of bits from the host ID, adding them to the network ID.
IP Addresses
Each VM has at least two associated IP addresses: a public-facing virtual IP (VIP) and an internal dynamic IP (DIP) address.
About VIP
VIP comes from a pool of IP addresses managed by Microsoft. It’s not assigned directly to the VM. It’s assigned to the Cloud Service that contains the VM.
Static Public IPs
Yo can assign static public IPs to your VMs. Azure allowed to each suscription to reserve up 20 VIPs.
VM
Each VM belongs to a cloud service. It’s a management a security boundary for VMs.
VIP Azure PowerShell command
New-AzureReservedIP -ReservedIPName “myReservedIP” - Label “MyLabel” -Location “west us”
DIP address
It’s a dynamic IP address associated with your VM. DIP is assigned by DHCP. It’s remain stable as long as you don’t stop or deallocate the machine.
Name resolution and DNS Servers
VMs on the same network can address one another by DIP. If you want to refer them by hostnames or fully qualified domain name (FQDN) directly, yo need name resolutions. Azure provides a built-in hostname resolution for VMs and role instances within the same cloud service. However, for VMs across multiple cloud services, you’ll need to set up your own DNS server.
HOST NAMES and FQDNS
complete
Understanding Access Control Lists and Network Security Groups
You can use both network Access Control Lists (ACLs) and Network Security Groups (NSGs) to control traffic to your VMs.
VM endpoints
to compelte
Network ACLs
complete
NSGs
complete
VIRTUAL NETWORK
This tag specifies all network address space on your virtual network….complete
AZURE_LOADBALANCER
Azure Load Balancer……comp
INTERNET
complete
INCOMPATIBILITY BETWEEN ACL AND NSG
YOU CANNOT USE BOTH ACL AND NSG on the same VM instance. You must first remove all endpoint ACLs before you can associate an NSG.
1.2 SUMMARY
1) Yo can create private virtual networks in Azure. VMs deployed on the same virtual network can communicate with one another in the same service.
2) each machine has a public VIP address and one of multiple PIP addresses, one per NIC.
3) You can associate both static virtual IP addresses and private IP addresses to VMs on a virtual network.
4) ACLs are associated to VM endpoints to control traffic to VMs.
5) NSGs are associated to VMs or subnets to provide greater traffic control to VMs or virtual networks.
6) Both ACLs and NSGs define prioritized rules to control network traffic, but they cannot be used in conjuction.