Practical Exercises: Infrastructure as Code

Size: px
Start display at page:

Download "Practical Exercises: Infrastructure as Code"

Transcription

1 Practical Exercises: Infrastructure as Code Module 1: Azure Automation Create an Automation Account (Portal) 1. From the Azure portal, create a new Automation account with the following settings: Name: DevOpsLabs1 Subscription: your Azure subscription Resource Group: DevOpsLab1RG Location: East US 2 Create Azure Run As Account: Yes Configure Automation assets (Portal) 1. From the Azure portal, update Azure modules in the Automation Account assets. Wait until the update completes. 2. Import the AzureRM.Network module. Make sure to wait until the import completes. 3. From the Azure portal, create Automation variables in the Automation account you created in the previous exercise with the following settings: Name: VM1Name iii. Value: vm1 Name: VM2Name iii. Value: vm2

2 Name: ResourceGroupName iii. Value: DevOpsLab2RG Name: UserName iii. Value: Student Name: Password iii. Value: Pa55w.rd1234 iv. Encrypted: Yes Name: Location iii. Value: eastus2 Create and run an Automation Windows PowerShell workflow-based textual runbook that provisions two load-balanced Azure VM in parallel (Portal) 1. From the Azure portal, in the Automation account you created in the first exercise of this lab, create and publish an Automation runbook with the following settings: Name: Provision-lab-textual-workflow Runbook type: PowerShell Workflow Runbook code: workflow Provision-lab-textual-workflow { $c = Get-AutomationConnection -Name 'AzureRunAsConnection' Add-AzureRmAccount -ServicePrincipal -Tenant $c.tenantid -ApplicationID $c.applicationid -CertificateThumbprint $c.certificatethumbprint $vm1name = Get-AutomationVariable -Name 'VM1Name' $vm2name = Get-AutomationVariable -Name 'VM2Name' $resourcegroupname = Get-AutomationVariable -Name 'ResourceGroupName' $location = Get-AutomationVariable -Name 'Location' $username = Get-AutomationVariable -Name 'UserName'

3 $password = Get-AutomationVariable -Name 'Password' $vmsize = 'Standard_D1_v2' $vnetname = $resourcegroupname + '-vnet1' $vnetprefix = ' /16' $subnet1name = 'subnet1' $subnet1prefix = ' /24' $avsetname = $resourcegroupname + '-avset1' $publishername = 'MicrosoftWindowsServer' $offer = 'WindowsServer' $sku = '2016-Datacenter' $version = 'latest' $vmosdisksize = 128 $publicipvm1name = $resourcegroupname + $vm1name + '-pip1' $publicipvm2name = $resourcegroupname + $vm2name + '-pip1' $nic1name = $resourcegroupname + $vm1name + '-nic1' $nic2name = $resourcegroupname + $vm2name + '-nic1' $vm1osdiskname = $resourcegroupname + $vm1name + 'osdisk' $vm2osdiskname = $resourcegroupname + $vm2name + 'osdisk' $resourcegroup = New-AzureRmResourceGroup -Name $resourcegroupname - Location $location $securepassword = ConvertTo-SecureString -String $password -AsPlainText -Force $credentials = New-Object System.Management.Automation.PSCredential - ArgumentList $username,$securepassword $avset = New-AzureRmAvailabilitySet -ResourceGroupName $resourcegroupname -Name $avsetname -Location $location - PlatformUpdateDomainCount 5 -PlatformFaultDomainCount 3 $subnet = New-AzureRmVirtualNetworkSubnetConfig -Name $using:subnet1name -AddressPrefix $using:subnet1prefix $vnet = New-AzureRmVirtualNetwork -Name $using:vnetname - AddressPrefix $using:vnetprefix -Subnet $using:subnet

4 Parallel { $vnet = Get-AzureRmVirtualNetwork -Name $using:vnetname - $publicipvm1 = New-AzureRmPublicIpAddress -Name $using:publicipvm1name - AllocationMethod Dynamic $nic1 = New-AzureRmNetworkInterface -Name $using:nic1name - SubnetId $vnet.subnets[0].id -PublicIpAddressId $publicipvm1.id $vm1 = New-AzureRmVMConfig -VMName $using:vm1name -VMSize $using:vmsize -AvailabilitySetId $using:avset.id $randomnumber1 = Get-Random -Minimum 0 -Maximum $tempname1 = ($using:resourcegroupname + $using:vm1name + $randomnumber1).tolower() $nameavail1 = Get-AzureRmStorageAccountNameAvailability -Name $tempname1 If ($nameavail1.nameavailable -ne $true) { Do { $randomnumber1 = Get-Random -Minimum 0 -Maximum $tempname1 = $using:resourcegroupname + $using:vm1name + $randomnumber1 $nameavail1 = Get-AzureRmStorageAccountNameAvailability -Name $tempname1 Until ($nameavail1.nameavailable -eq $True) $storageaccountname1 = $tempname1 $storageaccount1 = New-AzureRmStorageAccount -ResourceGroupName $using:resourcegroupname -Name $storageaccountname1 -SkuName "Standard_LRS" -Kind "Storage" -Location $using:location $vm1 = Set-AzureRmVMOperatingSystem -VM $vm1 -Windows -ComputerName $using:vm1name -Credential $using:credentials -ProvisionVMAgent - EnableAutoUpdate $vm1 = Set-AzureRmVMSourceImage -VM $vm1 -PublisherName $using:publishername -Offer $using:offer -Skus $using:sku -Version $using:version $blobpath1 = 'vhds/' + $using:vm1osdiskname + '.vhd' $osdiskuri1 = $storageaccount1.primaryendpoints.blob.tostring() + $blobpath1

5 $vm1 = Set-AzureRmVMOSDisk -VM $vm1 -Name $using:vm1osdiskname - VhdUri $osdiskuri1 -CreateOption fromimage $vm1 = Add-AzureRmVMNetworkInterface -VM $vm1 -Id $nic1.id New-AzureRmVM - -Location $using:location -VM $vm1 $vnet = Get-AzureRmVirtualNetwork -Name $using:vnetname - $publicipvm2 = New-AzureRmPublicIpAddress -Name $using:publicipvm2name - AllocationMethod Dynamic $nic2 = New-AzureRmNetworkInterface -Name $using:nic2name - SubnetId $vnet.subnets[0].id -PublicIpAddressId $publicipvm2.id $vm2 = New-AzureRmVMConfig -VMName $using:vm2name -VMSize $using:vmsize -AvailabilitySetId $using:avset.id $randomnumber2 = Get-Random -Minimum 0 -Maximum $tempname2 = ($using:resourcegroupname + $using:vm2name + $randomnumber2).tolower() $nameavail2 = Get-AzureRmStorageAccountNameAvailability -Name $tempname2 If ($nameavail2.nameavailable -ne $true) { Do { $randomnumber2 = Get-Random -Minimum 0 -Maximum $tempname2 = $using:resourcegroupname + $using:vm2name + $randomnumber2 $nameavail2 = Get-AzureRmStorageAccountNameAvailability -Name $tempname2 Until ($nameavail2.nameavailable -eq $True) $storageaccountname2 = $tempname2 $storageaccount2 = New-AzureRmStorageAccount -ResourceGroupName $using:resourcegroupname -Name $storageaccountname2 -SkuName "Standard_LRS" -Kind "Storage" -Location $using:location $vm2 = Set-AzureRmVMOperatingSystem -VM $vm2 -Windows -ComputerName $using:vm2name -Credential $using:credentials -ProvisionVMAgent - EnableAutoUpdate $vm2 = Set-AzureRmVMSourceImage -VM $vm2 -PublisherName $using:publishername -Offer $using:offer -Skus $using:sku -Version $using:version

6 $vm2 = Set-AzureRmVMOSDisk -VM $vm2 -Name $using:vm2osdiskname - StorageAccountType StandardLRS -DiskSizeInGB $using:vmosdisksize -CreateOption FromImage -Caching ReadWrite $blobpath2 = 'vhds/' + $using:vm2osdiskname + '.vhd' $osdiskuri2 = $storageaccount2.primaryendpoints.blob.tostring() + $blobpath2 $vm2 = Set-AzureRmVMOSDisk -VM $vm2 -Name $using:vm2osdiskname - VhdUri $osdiskuri2 -CreateOption fromimage $vm2 = Add-AzureRmVMNetworkInterface -VM $vm2 -Id $nic2.id New-AzureRmVM - -Location $using:location -VM $vm2 $publiciplbname = $using:resourcegroupname + 'lb-pip1' $feiplbconfigname = $using:resourcegroupname + '-felbipconfig' $beaddresspoolconfigname = $using:resourcegroupname + '-beipapconfig' $lbname = $using:resourcegroupname + 'lb' $publiciplb = New-AzureRmPublicIpAddress -Name $publiciplbname - AllocationMethod Dynamic $feiplbconfig = New-AzureRmLoadBalancerFrontendIpConfig -Name $feiplbconfigname -PublicIpAddress $publiciplb $beipaaddresspoolconfig = New- AzureRmLoadBalancerBackendAddressPoolConfig -Name $beaddresspoolconfigname $healthprobeconfig = New-AzureRmLoadBalancerProbeConfig -Name HealthProbe -RequestPath '\' -Protocol http -Port 80 -IntervalInSeconds 15 - ProbeCount 2 $lbrule = New-AzureRmLoadBalancerRuleConfig -Name HTTP - FrontendIpConfiguration $feiplbconfig -BackendAddressPool $beipaaddresspoolconfig -Probe $healthprobe -Protocol Tcp -FrontendPort 80 - BackendPort 80 $lb = New-AzureRmLoadBalancer -ResourceGroupName $using:resourcegroupname -Name $lbname -Location $using:location - FrontendIpConfiguration $feiplbconfig -LoadBalancingRule $lbrule - BackendAddressPool $beipaaddresspoolconfig -Probe $healthprobeconfig $nic1 = Get-AzureRmNetworkInterface -Name $using:nic1name - $nic1.ipconfigurations[0].loadbalancerbackendaddresspools = $beipaaddresspoolconfig

7 $nic2 = Get-AzureRmNetworkInterface -Name $using:nic2name - $nic2.ipconfigurations[0].loadbalancerbackendaddresspools = $beipaaddresspoolconfig Set-AzureRmNetworkInterface -NetworkInterface $nic1 Set-AzureRmNetworkInterface -NetworkInterface $nic2 2. Start the runbook and ensure that it successfully provisions two virtual machines and an external load balancer. Create and run an Automation Windows PowerShell-based textual runbook that de-provisions the lab environment (Portal) 1. From the Azure portal, in the Automation account you created in the first exercise of this lab, create and publish an Automation runbook with the following settings: Name: Deprovision-lab-textual-runbook Runbook type: PowerShell Runbook code: $c = Get-AutomationConnection -Name 'AzureRunAsConnection' Add-AzureRmAccount -ServicePrincipal -Tenant $c.tenantid -ApplicationID $c.applicationid -CertificateThumbprint $c.certificatethumbprint $resourcegroupname = Get-AutomationVariable -Name 'ResourceGroupName' Remove-AzureRmResourceGroup -Name $resourcegroupname -Force 2. The purpose of the runbook is to remove the resource group containing all of our lab resources. Do NOT run the runbook, since you will be using these resources in upcoming labs of this course.

How to Deploy an F-Series Firewall in Microsoft Azure using PowerShell and ARM

How to Deploy an F-Series Firewall in Microsoft Azure using PowerShell and ARM How to Deploy an F-Series Firewall in Microsoft Azure using PowerShell and ARM For most advanced networking features in the Microsoft Azure Cloud, such as multiple network interfaces or user images, you

More information

PowerShell Reference Guide

PowerShell Reference Guide PowerShell and Azure CLI Reference Introduction: Welcome to the. This guide will provide you with a reference to key PowerShell commands necessary for Azure administrators as well as required to pass the

More information

PowerShell cmdlets For Azure Resource Manager (ARM)

PowerShell cmdlets For Azure Resource Manager (ARM) PowerShell cmdlets For Azure Resource Manager (ARM) Run Windows PowerShell ISE as Administrator and use the commands mentioned in the following sections to perform various tasks with ARM. PowerShell ISE

More information

Mediant Virtual Edition (VE) SBC

Mediant Virtual Edition (VE) SBC Installation Manual AudioCodes Mediant Family of Session Border Controllers (SBC) Mediant Virtual Edition (VE) SBC Deployment in Microsoft Azure Version 7.2 Installation Manual Contents Table of Contents

More information

IBM Security Guardium Cloud Deployment Guide Microsoft Azure

IBM Security Guardium Cloud Deployment Guide Microsoft Azure IBM Security Guardium Cloud Deployment Guide Microsoft Azure Prerequisites: Install Azure PowerShell 1.0 (or later) and connect to Azure account https://docs.microsoft.com/en-us/powershell/azureps-cmdlets-docs/

More information

POWERSHELL REFERENCE GUIDE

POWERSHELL REFERENCE GUIDE POWERSHELL REFERENCE GUIDE Skylines Academy Azure Study Group @SkylinesAcademy www.skylinesacademy.com POWERSHELL REFERENCE GUIDE Introduction: Welcome to the. This guide will provide you with a reference

More information

Azure Hand-Lab Infrastructure as Code Student Version

Azure Hand-Lab Infrastructure as Code Student Version Azure Hand-Lab Infrastructure as Code Student Version Date : 2017, October Authors: Maxime Coquerel (Microsoft Azure MVP) http://zigmax.net Olivier Puech Tidjani Belmansour. Requirements: An active Microsoft

More information

Red Hat CloudForms 4.6

Red Hat CloudForms 4.6 Red Hat CloudForms 4.6 Installing Red Hat CloudForms on Microsoft Azure How to install and configure Red Hat CloudForms on a Microsoft Azure cloud environment Last Updated: 2018-03-09 Red Hat CloudForms

More information

How to Configure Azure Route Tables (UDR) using PowerShell and ARM

How to Configure Azure Route Tables (UDR) using PowerShell and ARM How to Configure Azure Route Tables (UDR) using PowerShell and ARM Azure Route Tables, or User Defined Routing, allow you to create network routes so that your F-Series Firewall VM can handle the traffic

More information

How to Configure an IKEv2 IPsec Site-to-Site VPN to a Routed-Based Microsoft Azure VPN Gateway

How to Configure an IKEv2 IPsec Site-to-Site VPN to a Routed-Based Microsoft Azure VPN Gateway How to Configure an IKEv2 IPsec Site-to-Site VPN to a Routed-Based Microsoft Azure VPN Gateway To connect to your Azure virtual network with your on-premise F-Series Firewall, Microsoft offers the Azure

More information

5nine V2V Easy Converter Version 8

5nine V2V Easy Converter Version 8 Mission Control for the Microsoft Cloud 5nine V2V Easy Converter Version 8 GETTING STARTED GUIDE March 2017 2017 5nine Software Inc. All rights reserved. All trademarks are the property of their respective

More information

Infrastructure as Python Code

Infrastructure as Python Code Infrastructure as Python Code Peter Hoffmann Senior So(ware Engineer Blue Yonder @peterhoffmann github/blue-yonder/documents/ Azure Migra+on - Shi1 & Li1 Infrastructure as a service ARM - Azure Resource

More information

FalconStor Data Mastery Platform Cloud Integration Guide

FalconStor Data Mastery Platform Cloud Integration Guide FalconStor Data Mastery Platform Cloud Integration Guide Contents 3 Overview Architectural overview Cloud use cases Amazon Web Services Microsoft Azure 7 FDMP and AWS Supported configurations Configuration

More information

Validated Reference Design NetScaler and Microsoft Azure

Validated Reference Design NetScaler and Microsoft Azure Validated Reference Design NetScaler and Microsoft Azure NetScaler VRD This guide focuses on providing guidelines to customers on implementing NetScaler on Microsoft Azure based on their use cases. Citrix.com

More information

How to Configure BGP over IKEv2 IPsec Site-to- Site VPN to an Azure VPN Gateway

How to Configure BGP over IKEv2 IPsec Site-to- Site VPN to an Azure VPN Gateway How to Configure BGP over IKEv2 IPsec Site-to- Site VPN to an Azure VPN Gateway To connect to your Azure virtual network with your on-premises F-Series Firewall, Microsoft offers the Azure VPN Gateway

More information

StarWind Virtual SAN Hybrid Cloud for Azure

StarWind Virtual SAN Hybrid Cloud for Azure One Stop Virtualization Shop StarWind Virtual SAN OCTOBER 2017 TECHNICAL PAPER Trademarks StarWind, StarWind Software and the StarWind and the StarWind Software logos are registered trademarks of StarWind

More information

IPv6 in the Cloud - Back to Square One?

IPv6 in the Cloud - Back to Square One? IPv6 in the Cloud - Back to Square One? Troopers, March 13 th 2018 Gabriel Müller, Senior Consultant AWK Group Facts and Figures Activity Consulting, engineering und project management for information

More information

Azure Security and Compliance Practical Exercises

Azure Security and Compliance Practical Exercises Azure Security and Compliance Practical Exercises Overview This course includes optional practical exercises where you can try out the technologies described in the course for yourself. This guide lists

More information

Deploy the ASAv On the Microsoft Azure Cloud

Deploy the ASAv On the Microsoft Azure Cloud You can deploy the ASAv on the Microsoft Azure cloud. About ASAv Deployment On the Microsoft Azure Cloud, on page 1 Prerequisites and System Requirements for the ASAv and Azure, on page 1 Guidelines and

More information

SECURE Gateway with Microsoft Azure Installation Guide. Version Document Revision 1.0

SECURE  Gateway with Microsoft Azure Installation Guide. Version Document Revision 1.0 SECURE Email Gateway with Microsoft Azure Installation Guide Version 4.7.0 Document Revision 1.0 Copyright Revision 1.0, November, 2017 Published by Clearswift Ltd. 1995 2017 Clearswift Ltd. All rights

More information

Azure Virtual Machines Practice Exercises

Azure Virtual Machines Practice Exercises Azure Virtual Machines Practice Exercises Overview This course includes optional practical exercises where you can try out the techniques demonstrated in the course for yourself. This guide lists the steps

More information

Databases in Azure Practical Exercises

Databases in Azure Practical Exercises Databases in Azure Practical Exercises Overview This course includes optional exercises where you can try out the techniques demonstrated in the course for yourself. This guide lists the steps for the

More information

How to Deploy the Barracuda NG Firewall on Microsoft Azure via PowerShell

How to Deploy the Barracuda NG Firewall on Microsoft Azure via PowerShell How to Deploy the Barracuda NG Firewall on Microsoft Azure via PowerShell For most advanced networking features in the Microsoft Azure Cloud, such as multiple network interfaces or reserved IP addresses

More information

NetApp Private Storage for Microsoft Azure

NetApp Private Storage for Microsoft Azure Technical Report NetApp Private Storage for Microsoft Azure Solution Architecture and Deployment Guide Mark Beaupre, NetApp September 2016 TR-4316 Abstract This document describes the architecture of the

More information

Implementing Microsoft Azure Infrastructure Solutions

Implementing Microsoft Azure Infrastructure Solutions Implementing Microsoft Azure Infrastructure Solutions OD20533C; On-Demand, Video-based Course Description This course is intended for IT professionals who are familiar with managing on-premises IT deployments

More information

Securing Microsoft Azure

Securing Microsoft Azure Securing Microsoft Azure Automatic Access Control List Rule Generation to Secure Microsoft Azure Cloud Networks Carl Philip Matsson Faculty: Faculty of Health, Science and Technology Subject: Computer

More information

Microsoft Cloud Workshops. Enterprise-Ready Cloud Hackathon Leader Guide

Microsoft Cloud Workshops. Enterprise-Ready Cloud Hackathon Leader Guide Microsoft Cloud Workshops Enterprise-Ready Cloud Hackathon Leader Guide August 2017 2017 Microsoft Corporation. All rights reserved. This document is confidential and proprietary to Microsoft. Internal

More information

How to Configure a High Availability Cluster in Azure via PowerShell

How to Configure a High Availability Cluster in Azure via PowerShell How to Configure a High Availability Cluster in Azure via PowerShell To safeguard against hardware and software failures in the Azure cloud, use a high availability (HA) setup. Most advanced networking

More information

Microsoft Cloud Workshop

Microsoft Cloud Workshop Microsoft Cloud Workshop Hands-on lab step-by-step October 2017 Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless otherwise

More information

High performance computing on Azure. Migration guide for A8 to A11 virtual machines. By KR Kandavel AzureCAT

High performance computing on Azure. Migration guide for A8 to A11 virtual machines. By KR Kandavel AzureCAT High performance computing on Azure Migration guide for A8 to A11 virtual machines By KR Kandavel AzureCAT June 2018 Contents Introduction... 3 Get started: Review the current VM size... 3 Choose a series

More information

Enterprise Azure Quick Start Guide v8.3.0

Enterprise Azure Quick Start Guide v8.3.0 Enterprise Azure Quick Start Guide v8.3.0 Rev. 1.0.0 Copyright Loadbalancer.org Table of Contents 1. Introduction...3 2. About Enterprise Azure...3 Main Differences to the Non-Cloud Product...3 Why use

More information

Microsoft. AZ-100 EXAM Azure Infrastructure and Deployment. m/ Product: Demo. For More Information:

Microsoft. AZ-100 EXAM Azure Infrastructure and Deployment.   m/ Product: Demo. For More Information: Page No 1 https://www.dumpsplanet.com m/ Microsoft AZ-100 EXAM Azure Infrastructure and Deployment Product: Demo For More Information: AZ-100-dumps Questions & Answers PDF P-2 Question: 1 You have two

More information

Pexip Infinity and Microsoft Azure Deployment Guide

Pexip Infinity and Microsoft Azure Deployment Guide Pexip Infinity and Microsoft Azure Deployment Guide Contents Introduction 1 Deployment guidelines 2 Configuring Azure Network Security Groups 4 Creating VM instances in Azure 5 Obtaining and preparing

More information

20745B: Implementing a Software- Defined DataCenter Using System Center Virtual Machine Manager

20745B: Implementing a Software- Defined DataCenter Using System Center Virtual Machine Manager 20745B: Implementing a Software- Defined DataCenter Using System Center Virtual Machine Manager Duration: 5 days; Instructor-led Familiarity with Windows Server and Windows Server administration An understanding

More information

Deploy Agisoft PhotoScan on Azure

Deploy Agisoft PhotoScan on Azure Deploy Agisoft PhotoScan on Azure With Avere vfxt for Azure or BeeGFS Paulo Marques da Costa AzureCAT December 2018 Contents Introduction to PhotoScan on Azure... 4 Deployment templates... 4 About Avere

More information

Create and Configure a VM in the Azure Step by Step Basic Lab (V2.0)

Create and Configure a VM in the Azure Step by Step Basic Lab (V2.0) Basic Lab (V2.0) Ahmed Abdelwahed Microsoft Certified Trainer Ahmed_abdulwahed@outlook.com Contents Create Windows Server 2016 VM On Microsoft Azure... 3 Create Windows Server 2016 Data Center VM step

More information

SQL Server database files and backups on Azure Storage for SAP workloads. By Ravi Alwani AzureCAT

SQL Server database files and backups on Azure Storage for SAP workloads. By Ravi Alwani AzureCAT SQL Server database files and backups on Azure Storage for SAP workloads By Ravi Alwani AzureCAT June 2018 Contents 1 Introduction... 1 2 SQL Server data files on blob storage... 2 2.1 Use PowerShell...

More information

[MS20533]: Implementing Microsoft Azure Infrastructure Solutions

[MS20533]: Implementing Microsoft Azure Infrastructure Solutions [MS20533]: Implementing Microsoft Azure Infrastructure Solutions Length : 5 Days Audience(s) : IT Professionals Level : 300 Technology : Microsoft Products Delivery Method : Instructor-led (Classroom)

More information

Implementing Microsoft Azure Infrastructure Solutions (20533)

Implementing Microsoft Azure Infrastructure Solutions (20533) Implementing Microsoft Azure Infrastructure Solutions (20533) Duration: 5 Days Price: $895 Delivery Option: Attend via MOC On-Demand Students Will Learn Describing Azure architecture components, including

More information

Azure 209x Practical Exercises Overview

Azure 209x Practical Exercises Overview Azure 209x Practical Exercises Overview This course includes optional exercises where you can try out the techniques demonstrated in the course for yourself. This guide lists the steps for the individual

More information

Cloud Operations Using Microsoft Azure. Nikhil Shampur

Cloud Operations Using Microsoft Azure. Nikhil Shampur Cloud Operations Using Microsoft Azure Nikhil Shampur Agenda - Overview - ArcGIS Enterprise on Azure strategy - Deployment Options - What s new - 10.6-10.6.1 - Automation, Upgrades - Tips and Tricks -

More information

Integrating On-Premises Identity Infrastructure with Microsoft Azure

Integrating On-Premises Identity Infrastructure with Microsoft Azure Integrating On-Premises Identity Infrastructure with Microsoft Azure OD10993; On-Demand, Video-based Course Description This course teaches IT professionals how to integrate their on-premises AD DS environment

More information

Microsoft Azure Course Content

Microsoft Azure Course Content Cloud Computing Trainings @ STUCORNER & SHARPENCLOUD Microsoft Azure Course Content Lesson 1: Introduction to Azure 1. Overview of On-premise infrastructure 2. Transition from On-premise to datacenter

More information

Installing the Nasuni Filer on the Azure Platform. Version 7.9 August 2017 Last modified: August 28, Nasuni Corporation All Rights Reserved

Installing the Nasuni Filer on the Azure Platform. Version 7.9 August 2017 Last modified: August 28, Nasuni Corporation All Rights Reserved Installing the Nasuni Filer on the Azure Platform Version 7.9 August 2017 Last modified: August 28, 2017 2017 Nasuni Corporation All Rights Reserved Document Information Installing the Nasuni Filer on

More information

Azure Application Deployment and Management: Service Fabric Create and Manage a Local and Azure hosted Service Fabric Cluster and Application

Azure Application Deployment and Management: Service Fabric Create and Manage a Local and Azure hosted Service Fabric Cluster and Application Azure Application Deployment and Management: Service Fabric Create and Manage a Local and Azure hosted Service Fabric Cluster and Application Overview This course includes optional practical exercises

More information

Azure for On-Premises Administrators Practice Exercises

Azure for On-Premises Administrators Practice Exercises Azure for On-Premises Administrators Practice Exercises Overview This course includes optional practical exercises where you can try out the techniques demonstrated in the course for yourself. This guide

More information

Installing the Nasuni Filer on the Azure Platform. Version 8.0 April 2018 Last modified: April 25, Nasuni Corporation All Rights Reserved

Installing the Nasuni Filer on the Azure Platform. Version 8.0 April 2018 Last modified: April 25, Nasuni Corporation All Rights Reserved Installing the Nasuni Filer on the Azure Platform Version 8.0 April 2018 Last modified: April 25, 2018 2018 Nasuni Corporation All Rights Reserved Document Information Installing the Nasuni Filer on the

More information

Reserved, Static and Public IP Addresses in the Azure Cloud using ASM

Reserved, Static and Public IP Addresses in the Azure Cloud using ASM Reserved, Static and Public IP Addresses in the Azure Cloud using ASM By default, a VM in the Azure cloud uses the hostname and IP address assigned to the cloud service the VM resides in. Whereas the hostname

More information

Microsoft Implementing Microsoft Azure Infrastructure Solutions.

Microsoft Implementing Microsoft Azure Infrastructure Solutions. Microsoft 70-533 Implementing Microsoft Azure Infrastructure Solutions http://killexams.com/pass4sure/exam-detail/70-533 QUESTION: 125 You have an Azure subscription. In Azure, you create two virtual machines

More information

Implementing a Software-Defined DataCenter (20745)

Implementing a Software-Defined DataCenter (20745) Implementing a Software-Defined DataCenter (20745) Duration: 5 Days Price: $895 Delivery Option: Attend via MOC On-Demand Students Will Learn Explaining the different virtualization options Installing

More information

Exam : Implementing Microsoft Azure Infrastructure Solutions

Exam : Implementing Microsoft Azure Infrastructure Solutions Exam 70-533: Implementing Microsoft Azure Infrastructure Solutions Objective Domain Note: This document shows tracked changes that are effective as of January 18, 2018. Design and Implement Azure App Service

More information

Deploy the ExtraHop Explore Appliance in Azure

Deploy the ExtraHop Explore Appliance in Azure Deploy the ExtraHop Explore Appliance in Azure Published: 2018-07-19 In this guide, you will learn how to deploy an ExtraHop Explore virtual appliance in a Microsoft Azure environment and join multiple

More information

How to Configure User Defined Routes in Azure

How to Configure User Defined Routes in Azure Azure allows you to change the routing in your VNET with Azure User Defined Routes (UDR). You must enable IP forwarding for the Barracuda NG Firewall and then create and configure the routing table for

More information

Securing the Enterprise s Cloud Workloads on Microsoft Azure

Securing the Enterprise s Cloud Workloads on Microsoft Azure Securing the Enterprise s Cloud Workloads on Microsoft Azure Table of Contents Securing the Enterprise s Cloud Workloads on Microsoft Azure...3 Microsoft Azure and CyberArk...5 Using CyberArk to Secure

More information

MarkLogic Server. MarkLogic Server on Microsoft Azure Guide. MarkLogic 9 January, 2018

MarkLogic Server. MarkLogic Server on Microsoft Azure Guide. MarkLogic 9 January, 2018 MarkLogic Server on Microsoft Azure Guide 1 MarkLogic 9 January, 2018 Last Revised: 9.0-4, January, 2018 2018 MarkLogic Corporation. MarkLogic and the MarkLogic logo are trademarks or registered trademarks

More information

Dell EMC Avamar Virtual Edition for Azure

Dell EMC Avamar Virtual Edition for Azure Dell EMC Avamar Virtual Edition for Azure Version 18.1 Installation and Upgrade Guide 302-004-692 REV 01 Copyright 2016-2018 Dell Inc. or its subsidiaries. All rights reserved. Published July 2018 Dell

More information

Course 10993A: Integrating On-Premises Identity Infrastructure with Microsoft Azure

Course 10993A: Integrating On-Premises Identity Infrastructure with Microsoft Azure Course 10993A: Integrating On-Premises Identity Infrastructure with Microsoft Azure - Course details Course Outline Module 1: Introducing Azure AD This module describes the differences between Azure AD

More information

How to Deploy the Barracuda Security Gateway in the New Microsoft Azure Management Portal

How to Deploy the Barracuda  Security Gateway in the New Microsoft Azure Management Portal How to Deploy the Barracuda Email Security Gateway in the New Microsoft Azure Management Portal This guide walks you through the steps to deploy and provision the Barracuda Email Security Gateway on Microsoft

More information

Microsoft AZ-101 Exam

Microsoft AZ-101 Exam Volume: 124 Questions Topic 1: Humongous Insurance 7 Questions Topic 2: Contoso Case Study A 5 Questions Topic 3: Mix Questions 108 Questions Topic 4: Contoso Case Study B 4 Questions Topic 1, Humongous

More information

Course Outline. Module 1: Microsoft Azure for AWS Experts Course Overview

Course Outline. Module 1: Microsoft Azure for AWS Experts Course Overview Course Outline Module 1: Microsoft Azure for AWS Experts Course Overview In this module, you will get an overview of Azure services and features including deployment models, subscriptions, account types

More information

StarWind Virtual SAN Installing and Configuring a SQL Server Failover Clustered Instance on Microsoft Azure Virtual Machines

StarWind Virtual SAN Installing and Configuring a SQL Server Failover Clustered Instance on Microsoft Azure Virtual Machines #1 HyperConverged Appliance for SMB and ROBO StarWind Virtual SAN Installing and Configuring a SQL Server Failover Clustered Instance on Microsoft Azure Virtual Machines AUGUST 2015 TECHNICAL PAPER BY

More information

AZRIL203 Introduction to Azure Active Directory

AZRIL203 Introduction to Azure Active Directory AZRIL203 Introduction to Azure Active Directory This is an infrastructure lab, useful to both ITPro s and Developers to learn the basics of Azure Active Directory. The main focus is on understanding the

More information

Office 365 Administration and Troubleshooting

Office 365 Administration and Troubleshooting Course 10997B: Office 365 Administration and Troubleshooting Page 1 of 5 Office 365 Administration and Troubleshooting Course 10997B: 2 days; Instructor-Led Introduction This is a two-day Instructor Led

More information

Developing Microsoft Azure Solutions

Developing Microsoft Azure Solutions Course 20532C: Developing Microsoft Azure Solutions Course details Course Outline Module 1: OVERVIEW OF THE MICROSOFT AZURE PLATFORM This module reviews the services available in the Azure platform and

More information

Deploying and Provisioning the Barracuda CloudGen WAF in the Classic Microsoft Azure Management Portal

Deploying and Provisioning the Barracuda CloudGen WAF in the Classic Microsoft Azure Management Portal Deploying and Provisioning the Barracuda CloudGen WAF in the Classic Microsoft Azure Management Portal Before you proceed, it is recommended that you go through the Deployment Best Practices article. Before

More information

Course AZ-100T01-A: Manage Subscriptions and Resources

Course AZ-100T01-A: Manage Subscriptions and Resources Course AZ-100T01-A: Manage Subscriptions and Resources Module 1: Managing Azure Subscriptions In this module, you ll learn about the components that make up an Azure subscription and how management groups

More information

Deploying and Provisioning the Barracuda Web Application Firewall in the New Microsoft Azure Management Portal

Deploying and Provisioning the Barracuda Web Application Firewall in the New Microsoft Azure Management Portal Deploying and Provisioning the Barracuda Web Application Firewall in the New Microsoft Azure Management Deploying and Provisioning the Barracuda Web Application Firewall Using the Azure Resource Manager

More information

StarWind Virtual SAN Installing and Configuring SQL Server Failover Clustered Instance on Microsoft Azure Virtual Machines

StarWind Virtual SAN Installing and Configuring SQL Server Failover Clustered Instance on Microsoft Azure Virtual Machines One Stop Virtualization Shop StarWind Virtual SAN Installing and Configuring SQL Server Failover Clustered Instance on Microsoft Azure Virtual Machines MARCH 2018 TECHNICAL PAPER Trademarks StarWind, StarWind

More information

How to Configure a High Availability Cluster in Azure via Web Portal and ASM

How to Configure a High Availability Cluster in Azure via Web Portal and ASM How to Configure a High Availability Cluster in Azure via Web Portal and ASM To safeguard against hardware and software failures in the Azure cloud, use a high availability (HA) setup. The Barracuda NextGen

More information

Networking Lecture 11

Networking Lecture 11 Networking Lecture 11 Deep.Azure@McKesson Zoran B. Djordjević @Zoran B. Djordjević, Nishava, Inc. 1 Azure Networking Azure provides a variety of networking capabilities: Connectivity between Azure resources:

More information

20532D - Version: 1. Developing Microsoft Azure Solutions

20532D - Version: 1. Developing Microsoft Azure Solutions 20532D - Version: 1 Developing Microsoft Azure Solutions Developing Microsoft Azure Solutions 20532D - Version: 1 5 days Course Description: This course offers students the opportunity to take an existing

More information

Dell EMC Avamar Virtual Edition for Azure

Dell EMC Avamar Virtual Edition for Azure Dell EMC Avamar Virtual Edition for Azure Version 7.5.1 Installation and Upgrade Guide 302-004-298 REV 03 Copyright 2016-2018 Dell Inc. or its subsidiaries. All rights reserved. Published May 2018 Dell

More information

10997: Office 365 Administration and Troubleshooting

10997: Office 365 Administration and Troubleshooting Short Course Outline 10997: Office 365 Administration and Troubleshooting Course Overview This is a three-day Instructor Led Training (ILT) course that targets the needs of information technology (IT)

More information

How to Configure Azure Route Tables (UDR) using Azure Portal and ARM

How to Configure Azure Route Tables (UDR) using Azure Portal and ARM How to Configure Azure Route Tables (UDR) using Azure Portal and ARM Azure Route Tables, or User Defined Routing, allow you to create network routes so that your F-Series Firewall VM can handle the traffic

More information

Configuring and Deploying a Private Cloud DURATION: Days

Configuring and Deploying a Private Cloud DURATION: Days Configuring and Deploying a Private Cloud DURATION: Days DESCRIPTION This course equips students with the skills they require to configure and deploy a cloud using Microsoft System Center 2012 R2. OBJECTIVE

More information

Student Lab Manual MS101.1x: Microsoft 365 Security Management

Student Lab Manual MS101.1x: Microsoft 365 Security Management Student Lab Manual MS101.1x: Microsoft 365 Security Management Lab Scenario You are the system administrator for Adatum Corporation, and you have Microsoft 365 deployed in a virtualized lab environment.

More information

Microsoft Managing Office 365 Identities and Requirements. Download Full version :

Microsoft Managing Office 365 Identities and Requirements. Download Full version : Microsoft 70-346 Managing Office 365 Identities and Requirements Download Full version : http://killexams.com/pass4sure/exam-detail/70-346 B. Service requests C. Service health page D. Office 365 Service

More information

This course comes with a virtual lab environment where you can practice what you learn.

This course comes with a virtual lab environment where you can practice what you learn. INF220x Security Practical Exercises Overview This course comes with a virtual lab environment where you can practice what you learn. In most cases, the userid is Adatum\Administrator and the password

More information

Office 365 Administration and Troubleshooting

Office 365 Administration and Troubleshooting Office 365 Administration and Troubleshooting Course 10997A 3 Days Instructor-led, Hands on Course Information This is a three-day Instructor Led Training (ILT) course that targets the needs of information

More information

Course 10997A: Office 365 Administration and Troubleshooting

Course 10997A: Office 365 Administration and Troubleshooting Skip to main content Course 10997A: Office 365 Administration and Troubleshooting - Course details Course Outline Module 1: Office 365 services overview This module describes Office 365 services, licensing,

More information

Deploy the ExtraHop Discover Appliance in Azure

Deploy the ExtraHop Discover Appliance in Azure Deploy the ExtraHop Discover Appliance in Azure Published: 2018-04-20 The following procedures explain how to deploy an ExtraHop Discover virtual appliance in a Microsoft Azure environment. You must have

More information

VPN Solutions for Zerto Virtual Replication to Azure. SoftEther Installation Guide

VPN Solutions for Zerto Virtual Replication to Azure. SoftEther Installation Guide VPN Solutions for Zerto Virtual Replication to Azure SoftEther Installation Guide VERSION 1.0 JULY 2017 Table of Contents 1. Overview... 2 1.1 Use Cases... 2 2. Proofs of Concept and Lab Usage... 2 2.1

More information

MICROSOFT EXAM QUESTIONS & ANSWERS

MICROSOFT EXAM QUESTIONS & ANSWERS MICROSOFT 70-247 EXAM QUESTIONS & ANSWERS Number: 70-247 Passing Score: 800 Time Limit: 120 min File Version: 45.5 ht t p:/ / w w w.gratisexam.com/ MICROSOFT 70-247 EXAM QUESTIONS & ANSWERS Exam Name:

More information

All rights reserved. All trademarks are the property of their respective owners.

All rights reserved. All trademarks are the property of their respective owners. 2017 5nine Software Inc. All rights reserved. All trademarks are the property of their respective owners. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval

More information

RSA NetWitness Logs. Microsoft Azure NSG (Flow Logs) Event Source Log Configuration Guide. Last Modified: Monday, February 26, 2018

RSA NetWitness Logs. Microsoft Azure NSG (Flow Logs) Event Source Log Configuration Guide. Last Modified: Monday, February 26, 2018 RSA NetWitness Logs Event Source Log Configuration Guide Microsoft Azure NSG (Flow Logs) Last Modified: Monday, February 26, 2018 Event Source Product Information: Vendor: Microsoft Event Source: NSG (Flow

More information

1. Click on "IaaS" to advance to the Windows Azure Scenario. 2. Click to configure the "CloudNet" Virtual Network

1. Click on IaaS to advance to the Windows Azure Scenario. 2. Click to configure the CloudNet Virtual Network Introduction to the Virtual Network Lab Scenario Steps Description 1. Click on "IaaS" to advance to the Windows Azure Scenario Windows Azure Infrastructure Services ( IaaS ) provides us with the capability

More information

Implementing a Software-Defined DataCenter

Implementing a Software-Defined DataCenter Course 20745: Implementing a Software-Defined DataCenter Page 1 of 6 Implementing a Software-Defined DataCenter Course 20745: 4 days; Instructor-Led Introduction This four-day course explains how to implement

More information

20533B: Implementing Microsoft Azure Infrastructure Solutions

20533B: Implementing Microsoft Azure Infrastructure Solutions 20533B: Implementing Microsoft Azure Infrastructure Solutions Course Details Course Code: Duration: Notes: 20533B 5 days This course syllabus should be used to determine whether the course is appropriate

More information

Developing Microsoft Azure Solutions

Developing Microsoft Azure Solutions 1 Developing Microsoft Azure Solutions Course Prerequisites A general understanding of ASP.NET and C# concepts Upon Completion of this Course, you will accomplish following: Compare the services available

More information

Install and Manage Windows Nano Server 2016 Step by Step

Install and Manage Windows Nano Server 2016 Step by Step Complete Lab (V2.0) Ahmed Abdelwahed Microsoft Certified Trainer Ahmed_abdulwahed@outlook.com Table of Contents Lab Objective... 3 Windows Nano Server 2016 overview... 3 Current infrastructure environment...

More information

Hyperledger Fabric Single Member Blockchain in Azure Marketplace Christine Avanessians Senior Program Manager

Hyperledger Fabric Single Member Blockchain in Azure Marketplace Christine Avanessians Senior Program Manager Hyperledger Fabric Single Member Blockchain in Azure Marketplace Christine Avanessians Senior Program Manager Overview Over the past year, we have worked diligently to develop an open blockchain ecosystem

More information

Load Balancing For Clustered Barracuda CloudGen WAF Instances in the New Microsoft Azure Management Portal

Load Balancing For Clustered Barracuda CloudGen WAF Instances in the New Microsoft Azure Management Portal Load Balancing For Clustered Barracuda CloudGen WAF Instances in the New Microsoft Azure Management This guide will walk you through the steps to load balance traffic across multiple instances of the Barracuda

More information

[MS10992]: Integrating On-Premises Core Infrastructure with Microsoft Azure

[MS10992]: Integrating On-Premises Core Infrastructure with Microsoft Azure [MS10992]: Integrating On-Premises Core Infrastructure with Microsoft Azure Length : 3 Days Audience(s) : IT Professionals Level : 300 Technology : Azure Delivery Method : Instructor-led (Classroom) Course

More information

Installing and Configuring Windows Server 2012

Installing and Configuring Windows Server 2012 Installing and Configuring Windows Server 2012 Course 20410C - Five days - Instructor-led - Hands-on Introduction Get hands-on instruction and practice installing and configuring Windows Server 2012, including

More information

Tintri Automation Toolkit Quick Start & Overview Guide

Tintri Automation Toolkit Quick Start & Overview Guide QUICK START & OVERVIEW GUIDE Tintri Automation Toolkit Quick Start & Overview Guide Windows PowerShell is Microsoft s command-line shell and scripting language for system administrators. In PowerShell,

More information

Microsoft Azure for AWS Experts

Microsoft Azure for AWS Experts Microsoft Azure for AWS Experts OD40390B; On-Demand, Video-based Course Description This course provides an in-depth discussion and practical hands-on training of Microsoft Azure Infrastructure Services

More information

NGFWv & ASAv in Public Cloud (AWS & Azure)

NGFWv & ASAv in Public Cloud (AWS & Azure) & in Public Cloud (AWS & Azure) Anubhav Swami, CCIE# 21208 Technical Marketing Engineer Your Speaker Anubhav Swami answami@cisco.com Technical Marketing Engineer 5 years in Cisco TAC 2 years in ASA BU

More information

Configuring and Operating a Hybrid Cloud with Microsoft Azure Stack

Configuring and Operating a Hybrid Cloud with Microsoft Azure Stack Course 10995: Configuring and Operating a Hybrid Cloud with Microsoft Azure Stack Page 1 of 1 Configuring and Operating a Hybrid Cloud with Microsoft Azure Stack Course 10995: 4 days; Instructor-Led Introduction

More information

Tableau Server on Microsoft Azure:

Tableau Server on Microsoft Azure: Tableau Server on Microsoft Azure: Deployment Guidelines and Best Practices April 2017 Table of Contents Abstract...3 Introduction to Tableau With Microsoft Azure...3 Option 1 Self Deployment via Azure

More information

Course 20533B: Implementing Microsoft Azure Infrastructure Solutions

Course 20533B: Implementing Microsoft Azure Infrastructure Solutions Course 20533B: Implementing Microsoft Azure Infrastructure Solutions Course details Course Outline Module 1: Introduction to Azure This module explains cloud computing, and compares cloud computing and

More information