1_2Design Azure virtual networks, networking services, DNS Flashcards

1
Q

Topic

A

Answer

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

Operate remotely Azure

A

Using remote desktop or Secure Shell (SSH)

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

Azure Virtual Networks

A

Vms deployed on a virtual network can communicate with one another as if they were on a LAN

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

Creating a cloud-only virtual network

A

You can create a new virtual networ using Azure management portal, Azure PowerShell, and xplat-cli

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

Virtual Network Details

A

Wizard requires: 1)Name of the courd virtual network, 2)suscription, 3)location -Azure region-

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

DNS Servers and VPN Connectivity page

A

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-)

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

CIDR Notation

A

Classless Inter-Domain Routing (CIDR) notation is a representation of a subnet mask.

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

SUBNET BITS and the number of SUBNETS

A

Your subnet take anumber of bits from the host ID, adding them to the network ID.

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

IP Addresses

A

Each VM has at least two associated IP addresses: a public-facing virtual IP (VIP) and an internal dynamic IP (DIP) address.

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

About VIP

A

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.

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

Static Public IPs

A

Yo can assign static public IPs to your VMs. Azure allowed to each suscription to reserve up 20 VIPs.

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

VM

A

Each VM belongs to a cloud service. It’s a management a security boundary for VMs.

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

VIP Azure PowerShell command

A

New-AzureReservedIP -ReservedIPName “myReservedIP” - Label “MyLabel” -Location “west us”

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

DIP address

A

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.

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

Name resolution and DNS Servers

A

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.

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

HOST NAMES and FQDNS

A

complete

17
Q

Understanding Access Control Lists and Network Security Groups

A

You can use both network Access Control Lists (ACLs) and Network Security Groups (NSGs) to control traffic to your VMs.

18
Q

VM endpoints

A

to compelte

19
Q

Network ACLs

A

complete

20
Q

NSGs

A

complete

21
Q

VIRTUAL NETWORK

A

This tag specifies all network address space on your virtual network….complete

22
Q

AZURE_LOADBALANCER

A

Azure Load Balancer……comp

23
Q

INTERNET

A

complete

24
Q

INCOMPATIBILITY BETWEEN ACL AND NSG

A

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.

25
Q

1.2 SUMMARY

A

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.