From bd3333fc0c3dfd000cce5d325d856a2d3bd10297 Mon Sep 17 00:00:00 2001 From: djsuszi Date: Tue, 7 Apr 2020 14:44:55 +0200 Subject: [PATCH 1/6] Update LAB_05-Implement_Intersite_Connectivity.md change IP address from 10.51.0.4 to 10.52.0.4 --- Instructions/Labs/LAB_05-Implement_Intersite_Connectivity.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Instructions/Labs/LAB_05-Implement_Intersite_Connectivity.md b/Instructions/Labs/LAB_05-Implement_Intersite_Connectivity.md index a056c330..0947b06a 100644 --- a/Instructions/Labs/LAB_05-Implement_Intersite_Connectivity.md +++ b/Instructions/Labs/LAB_05-Implement_Intersite_Connectivity.md @@ -195,7 +195,7 @@ In this task, you will test connectivity between virtual machines on the three v 1. In the Windows PowerShell console window, run the following to test connectivity to **az104-05-vm2** (which has the private IP address of **10.52.0.4**): ```pwsh - Test-NetConnection -ComputerName 10.51.0.4 -Port 3389 -InformationLevel 'Detailed' + Test-NetConnection -ComputerName 10.52.0.4 -Port 3389 -InformationLevel 'Detailed' ``` 1. Switch back to the Azure portal on your lab computer and navigate back to the **Virtual machines** blade. From f410454331fee78fc0eb9d1f639d70dec44b2284 Mon Sep 17 00:00:00 2001 From: Cristian Vergara Date: Wed, 8 Apr 2020 11:18:44 -0400 Subject: [PATCH 2/6] Update LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md Added extra steps from lines 97-100 to validate the current SKU before the change. --- ...3c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Instructions/Labs/LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md b/Instructions/Labs/LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md index 75a82059..c9d66a57 100644 --- a/Instructions/Labs/LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md +++ b/Instructions/Labs/LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md @@ -94,6 +94,12 @@ In this task, you will managing configuration of the Azure managed disk by using Get-AzDisk -ResourceGroupName $rgName -Name $diskName ``` +1. To validate the current SKU as **Standard_LRS**, from the PowerShell session within Cloud Shell, run the following command: + + ```pwsh + New-AzDiskUpdateConfig -Sku Premium_LRS | Update-AzDisk -ResourceGroupName $rgName -DiskName $diskName + ``` + 1. To change the disk performance SKU to **Premium_LRS**, from the PowerShell session within Cloud Shell, run the following: ```pwsh @@ -116,4 +122,4 @@ In this lab, you have: - Started a PowerShell session in Azure Cloud Shell - Created a resource group and an Azure managed disk by using Azure PowerShell -- Configured the managed disk by using Azure PowerShell \ No newline at end of file +- Configured the managed disk by using Azure PowerShell From 967283fb045290c6311110f4414c6b8bd4dfad05 Mon Sep 17 00:00:00 2001 From: polichtm Date: Thu, 9 Apr 2020 09:37:34 -0400 Subject: [PATCH 3/6] addressing #37 --- Instructions/Labs/LAB_04-Implement_Virtual_Networking.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Instructions/Labs/LAB_04-Implement_Virtual_Networking.md b/Instructions/Labs/LAB_04-Implement_Virtual_Networking.md index cf5190fe..939530e0 100644 --- a/Instructions/Labs/LAB_04-Implement_Virtual_Networking.md +++ b/Instructions/Labs/LAB_04-Implement_Virtual_Networking.md @@ -113,7 +113,7 @@ In this task, you will configure static assignment of public and private IP addr 1. On the **ipconfig1** blade, set **Assignment** to **Static**, leave the default value of **IP address** set to **10.40.0.4**. -1. On the **ipconfig1** blade, set **Public IP address** to **Enabled** and then click **IP address - Configure required settings**. +1. On the **ipconfig1** blade, in the **Public IP address settings** section, select **Associate** and then click **IP address - Configure required settings**. 1. On the **Choose public IP address blade**, click **+ Create new** and create a new public IP address with the following settings: From 0ec0483d8daf468539ac257cde174ccfed7c04f2 Mon Sep 17 00:00:00 2001 From: polichtm Date: Fri, 10 Apr 2020 07:34:20 -0400 Subject: [PATCH 4/6] Update LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md --- ...AB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Instructions/Labs/LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md b/Instructions/Labs/LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md index c9d66a57..0057c2a9 100644 --- a/Instructions/Labs/LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md +++ b/Instructions/Labs/LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md @@ -94,10 +94,10 @@ In this task, you will managing configuration of the Azure managed disk by using Get-AzDisk -ResourceGroupName $rgName -Name $diskName ``` -1. To validate the current SKU as **Standard_LRS**, from the PowerShell session within Cloud Shell, run the following command: +1. To verify the current SKU as **Standard_LRS**, run the following: ```pwsh - New-AzDiskUpdateConfig -Sku Premium_LRS | Update-AzDisk -ResourceGroupName $rgName -DiskName $diskName + (Get-AzDisk -ResourceGroupName $rgName -Name $diskName).Sku ``` 1. To change the disk performance SKU to **Premium_LRS**, from the PowerShell session within Cloud Shell, run the following: From 0d5f4e89abdd5ddfabc74b5fbfb466790c80aa28 Mon Sep 17 00:00:00 2001 From: polichtm Date: Fri, 10 Apr 2020 07:36:37 -0400 Subject: [PATCH 5/6] addressing #42 --- Instructions/Labs/LAB_08-Manage_Virtual_Machines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md b/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md index 91f75b52..7f80fa17 100644 --- a/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md +++ b/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md @@ -85,7 +85,7 @@ In this task, you will deploy Azure virtual machines into different availability | --- | --- | | Boot diagnostics | **Off** | -1. Click **Next: Advanced >**, on the **Management** tab of the **Create a virtual machine** blade, review the available settings without modifying any of them, and click **Review + Create**. +1. Click **Next: Advanced >**, on the **Advanced** tab of the **Create a virtual machine** blade, review the available settings without modifying any of them, and click **Review + Create**. 1. On the **Review + Create** blade, click **Create**. From 0ae4880a26bd450f2f5cd9336899b20bf6452f9c Mon Sep 17 00:00:00 2001 From: polichtm Date: Fri, 10 Apr 2020 07:40:20 -0400 Subject: [PATCH 6/6] addressing #41 --- .../Labs/LAB_06-Implement_Network_Traffic_Management.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Instructions/Labs/LAB_06-Implement_Network_Traffic_Management.md b/Instructions/Labs/LAB_06-Implement_Network_Traffic_Management.md index d27ebbcc..4be58215 100644 --- a/Instructions/Labs/LAB_06-Implement_Network_Traffic_Management.md +++ b/Instructions/Labs/LAB_06-Implement_Network_Traffic_Management.md @@ -45,7 +45,7 @@ In this task, you will deploy four virtual machines into the same Azure region. ```pwsh $location = '[Azure_region]' - $rgName = 'az104-06-rg01' + $rgName = 'az104-06-rg1' New-AzResourceGroup -Name $rgName -Location $location ``` @@ -170,7 +170,7 @@ In this task, you will test transitivity of virtual network peering by using Net | Setting | Value | | --- | --- | | Subscription | the name of the Azure subscription you are using in this lab | - | Resource group | **az104-06-rg01** | + | Resource group | **az104-06-rg1** | | Source type | **Virtual machine** | | Virtual machine | **az104-06-vm0** | | Destination | **Specify manually** | @@ -191,7 +191,7 @@ In this task, you will test transitivity of virtual network peering by using Net | Setting | Value | | --- | --- | | Subscription | the name of the Azure subscription you are using in this lab | - | Resource group | **az104-06-rg01** | + | Resource group | **az104-06-rg1** | | Source type | **Virtual machine** | | Virtual machine | **az104-06-vm0** | | Destination | **Specify manually** |