Title: Setting Up A Site to Site VPN Between Microsoft Azure and the Corporate Network

Size: px
Start display at page:

Download "Title: Setting Up A Site to Site VPN Between Microsoft Azure and the Corporate Network"

Transcription

1 Dean Suzuki Blog Title: Setting Up A Site to Site VPN Between Microsoft Azure and the Corporate Network Created: 6/17/2014 Description: In this blog post, I record the process that I went through to: Setup a site to site VPN from my on-premise lab network (simulating a corporate network) to Microsoft Azure Setup a VM in Azure This scenario simulates a situation where a customer wants to extend their on-premise environment to the Microsoft Azure cloud. A common example is where the customer wants to host machines in Microsoft Azure but needs access to resources on their corporate network (e.g. Active Directory, or Databases). This scenario corresponds to Scenario 2 from this MSDN article. Corporate Network Microsoft Azure Site To Site VPN x Machine x In this scenario, I am using on-premise Windows 2012 R2 Routing and Remote Access capability to serve as the endpoint for the Site-to-Site VPN tunnel from Azure. References: ; Guidelines for Deploying Windows Server Active Directory on Azure Virtual Machines ; Configure a Cloud-Only Virtual Network in the Management Portal ; Install a new Active Directory forest on an Azure virtual network ; Site-to-Site VPN in Azure Virtual Network using Windows Server 2012 Routing and Remote Access Service (RRAS) ; Setting Static IP Address in Azure (C) 2012 Dean Suzuki, All Rights Reserved 1

2 Disclaimer: Contents of this blog and article represent the opinions of Dean Suzuki, and do not reflect the views of my employer. (C) 2012 Dean Suzuki, All Rights Reserved (C) 2012 Dean Suzuki, All Rights Reserved 2

3 Table of Contents 1 Create Site to Site VPN from Azure to On-Premise Infrastructure Confirm if On-Premise VPN Device Meets Requirements For Cross-Premise VPN Obtain a Public IP for the VPN Device Configure a Azure Virtual Network for Site-to-Site Connectivity Configure a Virtual Network Gateway Configure VPN Device On-Premise using RRAS Run VPN Config Script Review Routing and Remote Access Configuration Set DNS on Azure Virtual Network Prepare for VM s in the Cloud Create an AD Site for Azure Create Machine in Azure on Corporate Network Create Virtual Machine Set Static IP Address for VM Download and Install Powershell for Azure Connect to your Azure subscription Verify that Static IP Address is Available Update VM with Static IP Address Setup Routes to Azure Cloud Check Connectivity from On-Premise to Cloud VM Join Machine to On-Prem Corporate Domain Add a Data Disk to VM for AD Database Install Active Directory Install Active Directory Domain Services Role (AD DS) Promote the machine to a domain controller Appendix: Using F5 as VPN Device (C) 2012 Dean Suzuki, All Rights Reserved 3

4 1 Create Site to Site VPN from Azure to On-Premise Infrastructure In the previous blog post, I mentioned that you have a couple options when creating an Azure Virtual Network. They are: Create a Cloud-Only Network that will only exist in Azure Create a network that will be connected through VPN with your on-premise corporate network. In the previous blog, we created a cloud-only network. In this post, we ll create a Azure Virtual Network with Site-to-Site VPN connectivity back to my onpremise lab network. 1.1 Confirm if On-Premise VPN Device Meets Requirements For Cross-Premise VPN Review this MSDN article ( Note that there are two types of VPN supported by Azure Site to Site Connectivity: Used to connect two sites together over VPN. Point to Site Connectivity: Used to connect a machine to a site over a VPN Note that there are two types of gateways: Static routing VPN gateways Dynamic Routing VPN gateways Static routing VPN gateways only support Site-to-Site Connectivity. If you want to support both Site-to- Site and Point-to-Site connectivity, then need to use a Dynamic routing VPN gateway. In my lab, I have a F5 BIG-IP which is a static routing VPN gateway. There is a config note listed that describes how to set this up. I also have a Windows 2012 R2 server which supports Routing and Remote Access and can do dynamic routing. 1.2 Obtain a Public IP for the VPN Device Obtain an externally facing IPv4 IP for your VPN device. This IP address is required for a site-to-site configuration and is used for your VPN device, which cannot be located behind a NAT. 1.3 Configure a Azure Virtual Network for Site-to-Site Connectivity Launch Azure Management Portal ( Login with your credentials (C) 2012 Dean Suzuki, All Rights Reserved 4

5 In the lower left-hand corner of the screen, click New. In the navigation pane, click Network Services, and then click Virtual Network. Click Custom Create to begin the configuration wizard Enter a name for the Virtual Network and select its Affinity Group. The affinity group is related to the physical location where you want your resources (VMs) to reside. Even if you already have an affinity group, it might not be associated with the region that you want your resources to reside in. If that s the case, select Create a new affinity group from the dropdown. NOTE: What is an affinity group? Windows Azure datacenters are physically very large and contain hundreds of thousands of servers. There is a significant difference in network latency between two servers in a single rack and two servers at opposite ends of a datacenter. Windows Azure therefore provides an affinity group feature to provide a higher degree of co-location within a datacenter than would otherwise be possible using random placement. Associated cloud and storage services should be placed within an affinity group to minimize network latency. This minimization is particularly important when a cloud service makes extensive use of storage services. Affinity groups allow you to group your Windows Azure services to optimize performance. All services within an affinity group will be located in the same data center. From ( (C) 2012 Dean Suzuki, All Rights Reserved 5

6 On the next page, press Next. I m going to add a DNS server later. Check the Configure a site-to-site VPN checkbox. On the next page, enter a name for the on-premise network the public IP address for the VPN device that Azure will connect to. It can t be a NAT d IP address the starting IP address and CIDR (Subnet mask) for the on-premise networks that will be communicated with by the servers in Azure. On the Virtual Network Address Spaces page, specify the address range that you want to use for your virtual network. It s especially important to select a range that does not overlap with any of the ranges that are used for your on-premises network. Also, I needed to specify a Gateway subnet. Please the Add gateway subnet button. Hit Check button to continue. (C) 2012 Dean Suzuki, All Rights Reserved 6

7 1.4 Configure a Virtual Network Gateway A virtual network gateway is required to create a secure cross-premises connection. After creating your virtual network, use the following steps to configure the virtual network gateway and gather the information you ll need to configure your VPN device. See for more information. 1. On the Networks page, verify that the status column for your virtual network is Created. 2. In the Name column, click the name of your virtual network. 3. On the Dashboard page, notice that this VNet doesn t have a gateway configured yet. You ll see this status as you go through the steps to configure your gateway. 4. At the bottom of the page, click Create Gateway. 5. Since I am using RRAS, I selected Dynamic Routing. (C) 2012 Dean Suzuki, All Rights Reserved 7

8 6. Press Yes at the confirmation prompt Gateway is being created. Once it has been created, we will need to configure the VPN device on-premise. 1.5 Configure VPN Device On-Premise using RRAS I used as a reference On the machine that will be the VPN on-premise connection point, download the VPN configuration script. The machine needs to have: two NICs, one NIC on the internal network, the second NIC on the Internet with public IP address (Can t be NAT d), and be running Windows 2012 R2. From the Azure Portal, click the hyperlink Download VPN Device Configuration Script. (C) 2012 Dean Suzuki, All Rights Reserved 8

9 Select Microsoft, RRAS, and Windows Server 2012 Rename the file name extension of the downloaded file from a.cfg to a.ps1 file name extension to indicate that it is a Windows PowerShell script. 1.6 Run VPN Config Script Note that in order to run the VPN configuration script, the Windows PowerShell Execution policy on the RRAS machine must be set to Unrestricted. To do so, start a Windows PowerShell console with administrative permissions, and then run Set-ExecutionPolicy Unrestricted Drag and drop the VPN Config Script into the Powershell Window and execute it. You may receive some warnings. 1.7 Review Routing and Remote Access Configuration Launch the Routing and Remote Access MMC (C) 2012 Dean Suzuki, All Rights Reserved 9

10 Go to the ServerName > Network Interfaces and you should see the Site to Site VPN connection and Azure Gateway object In the Azure Portal, press Connect to initiate the VPN. Yay! VPN is configured! 1.8 Set DNS on Azure Virtual Network Now that the Site to Site VPN is established, we will go back and set the DNS servers on the Azure Virtual Network to use the on-premise DNS server. Go to Azure Portal > Networks, select the Site to Site VPN network and press Configure. (C) 2012 Dean Suzuki, All Rights Reserved 10

11 2 Prepare for VM s in the Cloud Now, that the VPN is place, a common scenario is to place a domain controller from the corporate Active Directory into Microsoft Azure. This process is outlined at: Create an AD Site for Azure A first step to put a Domain Controller or services in the cloud is to configure the Active Directory Sites and Subnets to cover that network. On the On-Premise DC, launch AD Sites and Services Create a new Site for the Azure Cloud Name the site and select DefaultIPSiteLink as the transport. (C) 2012 Dean Suzuki, All Rights Reserved 11

12 Create the Subnet Object for the Azure Cloud Virtual Network (C) 2012 Dean Suzuki, All Rights Reserved 12

13 3 Create Machine in Azure on Corporate Network 3.1 Create Virtual Machine Create a new VM in Azure Choose the Virtual Network that we established the Site to Site VPN on. (C) 2012 Dean Suzuki, All Rights Reserved 13

14 Wait for the VM to be created. Log on to the new VM Open a Command Prompt and run ipconfig /all Notice that the DNS servers are set to what we configured earlier. (C) 2012 Dean Suzuki, All Rights Reserved 14

15 3.2 Set Static IP Address for VM By default Azure VM s are assigned dynamic ip addresses (DIP). The Dynamic IP addresses persist for the life of the VM. However, the dynamic address is deallocated if the VM is shutdown. To prevent the IP address from being deallocated, you can use Set-AzureStaticVNetIP to assign a static IP address Download and Install Powershell for Azure Read the following article for more background: Download and install the Azure Powershell module from: (C) 2012 Dean Suzuki, All Rights Reserved 15

16 3.2.2 Connect to your Azure subscription. Review ( and notice that there are two methods to connect to your Azure subscription. I am going with the management certificate approach. From the article: 1. Sign in to the Azure Management Portal using the credentials for your Azure account. 2. Open the Azure PowerShell console, as instructed in How to: Install Azure PowerShell. 3. Type the following command: Get-AzurePublishSettingsFile 1. When prompted, download and save the publishing profile and note the path and name of the.publishsettings file. This information is required when you run the Import-AzurePublishSettingsFile cmdlet to import the settings. The default location and file name format is: C:\Users<UserProfile>\Download\[MySubscription-...]-downloadDate-credentials.publishsettings (C:\deandata\ds_mtc\1-Private-Cloud-lab\Azure-Management-Certificate) 1. Type a command similar to the following, substituting your Windows account name and the path and file name for the placholders: Import-AzurePublishSettingsFile C:\Users<UserProfile>\Downloads<SubscriptionName>credentials.publishsettings (C) 2012 Dean Suzuki, All Rights Reserved 16

17 Commands to check your Azure account Get-azureaccount Get-azuresubscription Help azure ; lists all cmdlets in Azure Powerhell Verify that Static IP Address is Available Run command similar to: Test-AzureStaticVNetIP VNetName TestVNet IPAddress Update VM with Static IP Address First, get information on the VM and confirm that this is the VM that we want to change the IP Address of. Get-azureVM servicename dc1-s2s name dc1-s2s If we are sure that we want to change the IP address of this VM, run the following to update that VM Get-AzureVM -ServiceName StaticDemo -Name VM2 Set-AzureStaticVNetIP - IPAddress Update-AzureVM (C) 2012 Dean Suzuki, All Rights Reserved 17

18 After the VM restarts, I checked for the new IP address. Note: You can connect to the VM via RDP by selecting the VM in the portal and at the bottom, there is a Connect button. 3.3 Setup Routes to Azure Cloud In my lab, I m using a Windows 2012 R2 RRAS server as my VPN gateway to Azure. So, I ll need to tell my domain controllers how to route packets to get to the Azure network. Note: In a production environment, the routers would need to be updated with the routes to get to Azure. 3.4 Check Connectivity from On-Premise to Cloud VM Enable Ping through the firewall on the VMs Open the Windows Firewall with Advanced Security MMC Go to Inbound rules and Enable the rule for File and Printer Sharing (Echo Request ICMPv4-IN) Now, initiate a ping from a machine on-premise to the Cloud VM (C) 2012 Dean Suzuki, All Rights Reserved 18

19 3.5 Join Machine to On-Prem Corporate Domain On the Azure VM that was created, join the machine to the corporate domain (e.g. irvlab.mtcdemos.net) If the VPN, DNS, and routing are all working, then the VM should join the corporate domain. Reboot the machine and login with a domain account from your corporate domain. (C) 2012 Dean Suzuki, All Rights Reserved 19

20 3.6 Add a Data Disk to VM for AD Database By default, the Azure VM OS disk has write caching enabled. AD Best Practices recommends disabling write caching to ensure that AD database changes are committed to the disk before proceeding. In Azure, another disk option, the data disk, is available. Data disk drives do not cache writes by default. Data disk drives that are attached to a VM use write-through caching. Write-through caching makes sure the write is committed to durable Azure storage before the transaction is complete from the perspective of the VM s operating system. It provides durability, at the expense of slightly slower writes. Please note that at this time, Azure Data disks are constrained to 1 TB in size. 1. Select the VM in the Azure Management Portal 2. Press the Attach button and select Attach empty disk on the pop-up menu 3. Specify a size (e.g. 2GB) and make sure that the Host Cache Preference is set to None. (C) 2012 Dean Suzuki, All Rights Reserved 20

21 4. Initialize the disk From ( 1. Log on to the VM and format the additional disk. 1. Click Connect to log on to the VM, click Open to create an RDP session, and click Connect again. 2. Change the credentials to the new user name and password you specified. 3. In Server Manager, click Tools > Computer Management. 4. Click Disk Management and click Ok to initialize the new disk. 5. Right-click the disk name and click New Simple Volume. Complete wizard to format the new drive. (C) 2012 Dean Suzuki, All Rights Reserved 21

22 3.7 Install Active Directory I used ( as a reference Install Active Directory Domain Services Role (AD DS) 1. Launch Server Manager 2. Select Add roles and features 3. Press Next 4. Press Next (C) 2012 Dean Suzuki, All Rights Reserved 22

23 5. Press Next. 6. Select Active Directory Domain Services (C) 2012 Dean Suzuki, All Rights Reserved 23

24 7. Click Add Features 8. Press Next. 9. Press Next. (C) 2012 Dean Suzuki, All Rights Reserved 24

25 10. Press Next. 11. I checked to allow automatic restarts. Press Install. (C) 2012 Dean Suzuki, All Rights Reserved 25

26 3.7.2 Promote the machine to a domain controller 1. Click the link Promote this service to a domain controller (C) 2012 Dean Suzuki, All Rights Reserved 26

27 4 Appendix: Using F5 as VPN Device Reviewed and got referred to the F5 page ( Downloaded and imported the F5 iapp (C) 2012 Dean Suzuki, All Rights Reserved 27

28 Note, get the pre-shared key and the remote endpoint address from the Azure portal The iapp didn t work so I went the manual route. Create the IKE Peer Create IPSec Policy (C) 2012 Dean Suzuki, All Rights Reserved 28

29 Create Traffic Selector (C) 2012 Dean Suzuki, All Rights Reserved 29

30 (C) 2012 Dean Suzuki, All Rights Reserved 30

MacroLan Azure cloud tutorial.

MacroLan Azure cloud tutorial. MacroLan Azure cloud tutorial. Create a Virtual Machine running Windows This tutorial shows you how easy it is to create an Azure virtual machine (VM) running Windows, using as an example a Windows Server

More information

Good Morning Wireless! SSID: MSFTOPEN No Username or Password Required

Good Morning Wireless! SSID: MSFTOPEN No Username or Password Required Good Morning Wireless! SSID: MSFTOPEN No Username or Password Required 2 Today s Agenda - 9:00-10:30 - Windows Azure Infrastructure Services - 10:30-10:45 - Break - 10:45-12:00 - Windows Azure Infrastructure

More information

TechNote. Configuring SonicOS for MS Windows Azure

TechNote. Configuring SonicOS for MS Windows Azure Network Security SonicOS Contents Overview...1 Deployment Considerations...2 Supported Platforms...2 Configuring a Policy-Based VPN...2 Configuring a Route-Based VPN...17 Overview This TechNote details

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

Configuration Procedure

Configuration Procedure How to Establish Site-to-Site VPN between USG and MS Azure Background Microsoft (MS) Azure is an open and flexible cloud platform that enables users to quickly build, deploy, scale and manage applications

More information

Configuring IPsec VPN between a FortiGate and Microsoft Azure

Configuring IPsec VPN between a FortiGate and Microsoft Azure Configuring IPsec VPN between a FortiGate and Microsoft Azure The following recipe describes how to configure a site-to-site IPsec VPN tunnel. In this example, one site is behind a FortiGate and another

More information

SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE

SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE Contents Introduction... 3 Step 1 Create Azure Components... 5 Step 1.1 Virtual Network... 5 Step 1.1.1 Virtual Network Details... 6 Step 1.1.2 DNS Servers

More information

MATLAB Distributed Computing Server with HPC Cluster in Microsoft Azure

MATLAB Distributed Computing Server with HPC Cluster in Microsoft Azure MATLAB Distributed Computing Server with HPC Cluster in Microsoft Azure Introduction This article shows you how to deploy the MATLAB Distributed Computing Server (hereinafter referred to as MDCS) with

More information

Configuring SonicOS for Microsoft Azure

Configuring SonicOS for Microsoft Azure Configuring SonicOS for Microsoft Azure December 2015 Topics: Purpose Deployment Considerations Supported Platforms Configuring a Policy-based VPN Configuring a Route-based VPN Purpose This details how

More information

Hands on Lab: Building a Virtual Machine and Uploading VM Images to the Cloud using Windows Azure Infrastructure Services

Hands on Lab: Building a Virtual Machine and Uploading VM Images to the Cloud using Windows Azure Infrastructure Services Hands on Lab: Building a Virtual Machine and Uploading VM Images to the Cloud using Windows Azure Infrastructure Services Windows Azure Infrastructure Services provides cloud based storage, virtual networks

More information

How To Establish IPSec VPN between Cyberoam and Microsoft Azure

How To Establish IPSec VPN between Cyberoam and Microsoft Azure How To Establish IPSec VPN between Cyberoam and Microsoft Azure How To Establish IPSec VPN Connection between Cyberoam and Microsoft Azure Applicable Version: 10.00 onwards Overview Microsoft Azure is

More information

CREATING AN IKE IPSEC TUNNEL BETWEEN AN INTERNET SECURITY ROUTER AND A WINDOWS 2000/XP PC

CREATING AN IKE IPSEC TUNNEL BETWEEN AN INTERNET SECURITY ROUTER AND A WINDOWS 2000/XP PC CREATING AN IKE IPSEC TUNNEL BETWEEN AN INTERNET SECURITY ROUTER AND A WINDOWS 2000/XP PC 1 Introduction Release date: 11/12/2003 This application note details the steps for creating an IKE IPSec VPN tunnel

More information

Virtual Data Centre. User Guide

Virtual Data Centre. User Guide Virtual Data Centre User Guide 2 P age Table of Contents Getting Started with vcloud Director... 8 1. Understanding vcloud Director... 8 2. Log In to the Web Console... 9 3. Using vcloud Director... 10

More information

Deploy the client as an Azure RemoteApp program

Deploy the client as an Azure RemoteApp program Microsoft Dynamics AX 2012 R3 Deploy the client as an Azure RemoteApp program Microsoft Azure RemoteApp helps you provide secure, remote access to applications from many different user devices. This white

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

Configuring IPsec VPN with a FortiGate and a Cisco ASA

Configuring IPsec VPN with a FortiGate and a Cisco ASA Configuring IPsec VPN with a FortiGate and a Cisco ASA The following recipe describes how to configure a site-to-site IPsec VPN tunnel. In this example, one site is behind a FortiGate and another site

More information

Lab 1: Windows Azure Virtual Machines

Lab 1: Windows Azure Virtual Machines Lab 1: Windows Azure Virtual Machines Overview In this hands-on Lab, you will learn how to deploy a simple web page to a Web server hosted in Windows Azure and configure load balancing. Objectives In this

More information

Deploying Windows Streaming Media Servers NLB Cluster and metasan

Deploying Windows Streaming Media Servers NLB Cluster and metasan Deploying Windows Streaming Media Servers NLB Cluster and metasan Introduction...................................................... 2 Objectives.......................................................

More information

SharePoint 2013 on Windows Azure Infrastructure David Aiken & Dan Wesley Version 1.0

SharePoint 2013 on Windows Azure Infrastructure David Aiken & Dan Wesley Version 1.0 SharePoint 2013 on Windows Azure Infrastructure David Aiken & Dan Wesley Version 1.0 Overview With the Virtual Machine and Virtual Networking services of Windows Azure, it is now possible to deploy and

More information

Using and Contributing Virtual Machines to VM Depot

Using and Contributing Virtual Machines to VM Depot Using and Contributing Virtual Machines to VM Depot Introduction VM Depot is a library of open source virtual machine images that members of the online community have contributed. You can browse the library

More information

Azure Powershell Command Line Reference

Azure Powershell Command Line Reference Name Description Add-AzureEnvironment Creates an Azure environment Disable-AzureWebsiteApplicationDiagnostic Disables the website's application diagnostics Enable-AzureWebsiteApplicationDiagnostic Enables

More information

Contents Introduction... 3 Introduction to Active Directory Services... 4 Installing and Configuring Active Directory Services...

Contents Introduction... 3 Introduction to Active Directory Services... 4 Installing and Configuring Active Directory Services... Contents 1. Introduction... 3 1.1. Setup... 3 2. Introduction to Active Directory Services... 4 3. Installing and Configuring Active Directory Services... 5 3.1. Joining to Domain... 5 3.2. Promoting Member

More information

Release Notes. Pre-Installation Recommendations... 1 Platform Compatibility... 1 Known Issues... 2 Resolved Issues... 2 Troubleshooting...

Release Notes. Pre-Installation Recommendations... 1 Platform Compatibility... 1 Known Issues... 2 Resolved Issues... 2 Troubleshooting... Global VPN Client SonicWALL Global VPN Client 4.7.3 Release Notes Contents Pre-Installation Recommendations... 1 Platform Compatibility... 1 Known Issues... 2 Resolved Issues... 2 Troubleshooting... 4

More information

AppLoader 7.7. Load Testing On Windows Azure

AppLoader 7.7. Load Testing On Windows Azure AppLoader 7.7 Load Testing On Windows Azure CONTENTS INTRODUCTION... 3 PURPOSE... 3 CREATE A WINDOWS AZURE ACCOUNT... 3 CREATE A LOAD TESTING ENVIRONMENT ON THE CLOUD... 6 CONFIGURE A WINDOWS AZURE STORAGE

More information

Using IPsec VPN to provide communication between offices

Using IPsec VPN to provide communication between offices Using IPsec VPN to provide communication between offices This example provides secure, transparent communication between two FortiGates located at different offices using route-based IPsec VPN. In this

More information

How To Industrial Networking

How To Industrial Networking How To Industrial Networking Prepared by: Matt Crites Product: Date: April 2014 Any RAM or SN 6xxx series router Legacy firmware 3.14/4.14 or lower Subject: This document provides a step by step procedure

More information

Biznet GIO Cloud Connecting VM via Windows Remote Desktop

Biznet GIO Cloud Connecting VM via Windows Remote Desktop Biznet GIO Cloud Connecting VM via Windows Remote Desktop Introduction Connecting to your newly created Windows Virtual Machine (VM) via the Windows Remote Desktop client is easy but you will need to make

More information

Installing and Configuring Windows Server 2008. Module Overview 14/05/2013. Lesson 1: Planning Windows Server 2008 Installation.

Installing and Configuring Windows Server 2008. Module Overview 14/05/2013. Lesson 1: Planning Windows Server 2008 Installation. Installing and Configuring Windows Server 2008 Tom Brett Module Overview Planning Windows Server 2008 Installations Performing a Windows Server 2008 Installation Configuring Windows Server 2008 Following

More information

This chapter describes how to set up and manage VPN service in Mac OS X Server.

This chapter describes how to set up and manage VPN service in Mac OS X Server. 6 Working with VPN Service 6 This chapter describes how to set up and manage VPN service in Mac OS X Server. By configuring a Virtual Private Network (VPN) on your server you can give users a more secure

More information

AUTOMATED DISASTER RECOVERY SOLUTION USING AZURE SITE RECOVERY FOR FILE SHARES HOSTED ON STORSIMPLE

AUTOMATED DISASTER RECOVERY SOLUTION USING AZURE SITE RECOVERY FOR FILE SHARES HOSTED ON STORSIMPLE AUTOMATED DISASTER RECOVERY SOLUTION USING AZURE SITE RECOVERY FOR FILE SHARES HOSTED ON STORSIMPLE Copyright This document is provided "as-is." Information and views expressed in this document, including

More information

vcloud Director User's Guide

vcloud Director User's Guide vcloud Director 5.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of

More information

Step By Step Guide: Demonstrate DirectAccess in a Test Lab

Step By Step Guide: Demonstrate DirectAccess in a Test Lab Step By Step Guide: Demonstrate DirectAccess in a Test Lab Microsoft Corporation Published: May 2009 Updated: October 2009 Abstract DirectAccess is a new feature in the Windows 7 and Windows Server 2008

More information

Establishing a VPN tunnel to CNet CWR-854 VPN router using WinXP IPSec client

Establishing a VPN tunnel to CNet CWR-854 VPN router using WinXP IPSec client Establishing a VPN tunnel to CNet CWR-854 VPN router using WinXP IPSec client Generally speaking, remote users need to use a VPN client software for establishing a VPN connection to their home/work router

More information

Configuring a Check Point FireWall-1 to SOHO IPSec Tunnel

Configuring a Check Point FireWall-1 to SOHO IPSec Tunnel Configuring a Check Point FireWall-1 to SOHO IPSec Tunnel This document describes the procedures required to configure an IPSec VPN tunnel between a WatchGuard SOHO or SOHO tc and a Check Point FireWall-1.

More information

If you re not using Citrix XenCenter 6.0, your screens may vary. Required Virtual Interface Maps to... mgmt0. virtual network = mgmt0 wan0

If you re not using Citrix XenCenter 6.0, your screens may vary. Required Virtual Interface Maps to... mgmt0. virtual network = mgmt0 wan0 If you re not using Citrix XenCenter 6.0, your screens may vary. VXOA VIRTUAL APPLIANCES Citrix XenServer Hypervisor In-Line Deployment (Bridge Mode) 2012 Silver Peak Systems, Inc. Support Limitations

More information

Installing and Configuring Login PI

Installing and Configuring Login PI Installing and Configuring Login PI Login PI Hands-on lab In this lab, you will configure Login PI to provide performance insights for a Windows Server 2012 R2 Remote Desktop Services installation. To

More information

VELOCITY. Quick Start Guide. Citrix XenServer Hypervisor. Server Mode (Single-Interface Deployment) Before You Begin SUMMARY OF TASKS

VELOCITY. Quick Start Guide. Citrix XenServer Hypervisor. Server Mode (Single-Interface Deployment) Before You Begin SUMMARY OF TASKS If you re not using Citrix XenCenter 6.0, your screens may vary. VELOCITY REPLICATION ACCELERATOR Citrix XenServer Hypervisor Server Mode (Single-Interface Deployment) 2013 Silver Peak Systems, Inc. This

More information

Francesco.diaz@insight.com. http://francescodiaz.azurewebsites.net

Francesco.diaz@insight.com. http://francescodiaz.azurewebsites.net Francesco.diaz@insight.com http://francescodiaz.azurewebsites.net Agenda SQL workloads on Azure Microsoft Azure IaaS concepts Best Practices for SQL running on Azure VMs HA/DR SQL DB HA/DR Dedicated Higher

More information

VMware vcloud Air Networking Guide

VMware vcloud Air Networking Guide vcloud Air This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this document,

More information

How to Test Out Backup & Replication 6.5 for Hyper-V

How to Test Out Backup & Replication 6.5 for Hyper-V How to Test Out Backup & Replication 6.5 for Hyper-V Mike Resseler May, 2013 2013 Veeam Software. All rights reserved. All trademarks are the property of their respective owners. No part of this publication

More information

Configuring the PIX Firewall with PDM

Configuring the PIX Firewall with PDM Configuring the PIX Firewall with PDM Objectives In this lab exercise you will complete the following tasks: Install PDM Configure inside to outside access through your PIX Firewall using PDM Configure

More information

Windows Server 2008 R2 Initial Configuration Tasks

Windows Server 2008 R2 Initial Configuration Tasks Windows Server 2008 R2 Initial Configuration Tasks I am not responsible for your actions or their outcomes, in any way, while reading and/or implementing this tutorial. I will not provide support for the

More information

7. Configuring IPSec VPNs

7. Configuring IPSec VPNs 7. This guide describes how to use the Unified Threat Management appliance (UTM) IPSec VPN Wizard to configure the IP security (IPSec) virtual private networking (VPN) feature. This feature provides secure,

More information

Required Virtual Interface Maps to... mgmt0. virtual network = mgmt0 wan0. virtual network = wan0 mgmt1. network adapter not connected lan0

Required Virtual Interface Maps to... mgmt0. virtual network = mgmt0 wan0. virtual network = wan0 mgmt1. network adapter not connected lan0 VXOA VIRTUAL APPLIANCES Microsoft Hyper-V Hypervisor Router Mode (Out-of-Path Deployment) 2013 Silver Peak Systems, Inc. Assumptions Windows 2008 server is installed and Hyper-V server is running. This

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information

Creating a Gateway to Client VPN between Sidewinder G2 and a Mac OS X Client

Creating a Gateway to Client VPN between Sidewinder G2 and a Mac OS X Client A P P L I C A T I O N N O T E Creating a Gateway to Client VPN between Sidewinder G2 and a Mac OS X Client This application note describes how to set up a VPN connection between a Mac client and a Sidewinder

More information

How To Create A Virtual Private Cloud On Amazon.Com

How To Create A Virtual Private Cloud On Amazon.Com Amazon Web Services Hands-On Virtual Private Computing 1 Overview Amazon s Virtual Private Cloud (VPC) allows you to launch AWS resources in a virtual network that you define. You can define an environment

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.0.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

How To Set Up A Backupassist For An Raspberry Netbook With A Data Host On A Nsync Server On A Usb 2 (Qnap) On A Netbook (Qnet) On An Usb 2 On A Cdnap (

How To Set Up A Backupassist For An Raspberry Netbook With A Data Host On A Nsync Server On A Usb 2 (Qnap) On A Netbook (Qnet) On An Usb 2 On A Cdnap ( WHITEPAPER BackupAssist Version 5.1 www.backupassist.com Cortex I.T. Labs 2001-2008 2 Contents Introduction... 3 Hardware Setup Instructions... 3 QNAP TS-409... 3 Netgear ReadyNas NV+... 5 Drobo rev1...

More information

NEFSIS DEDICATED SERVER

NEFSIS DEDICATED SERVER NEFSIS TRAINING SERIES Nefsis Dedicated Server version 5.2.0.XXX (DRAFT Document) Requirements and Implementation Guide (Rev5-113009) REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER Nefsis

More information

Setting up VPN Access for Remote Diagnostics Support

Setting up VPN Access for Remote Diagnostics Support Setting up VPN Access for Remote Diagnostics Support D. R. Joseph, Inc. supports both dial-up and Internet access for remote support of 3GIBC1 and LF-Sizer control systems. This document describes how

More information

Required Virtual Interface Maps to... mgmt0. bridge network interface = mgmt0 wan0. bridge network interface = wan0 mgmt1

Required Virtual Interface Maps to... mgmt0. bridge network interface = mgmt0 wan0. bridge network interface = wan0 mgmt1 VXOA VIRTUAL APPLIANCE KVM Hypervisor In-Line Deployment (Bridge Mode) 2012 Silver Peak Systems, Inc. Support Limitations In Bridge mode, the virtual appliance only uses mgmt0, wan0, and lan0. This Quick

More information

Basic ViPNet VPN Deployment Schemes. Supplement to ViPNet Documentation

Basic ViPNet VPN Deployment Schemes. Supplement to ViPNet Documentation Basic ViPNet VPN Deployment Schemes Supplement to ViPNet Documentation 1991 2015 Infotecs Americas. All rights reserved. Version: 00121-04 90 01 ENU This document is included in the software distribution

More information

CONFIGURING MICROSOFT SQL SERVER REPORTING SERVICES

CONFIGURING MICROSOFT SQL SERVER REPORTING SERVICES CONFIGURING MICROSOFT SQL SERVER REPORTING SERVICES TECHNICAL ARTICLE November/2011. Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment

More information

F-Secure Messaging Security Gateway. Deployment Guide

F-Secure Messaging Security Gateway. Deployment Guide F-Secure Messaging Security Gateway Deployment Guide TOC F-Secure Messaging Security Gateway Contents Chapter 1: Deploying F-Secure Messaging Security Gateway...3 1.1 The typical product deployment model...4

More information

Network/VPN Overlap How-To with SonicOS 2.0 Enhanced Updated 9/26/03 SonicWALL,Inc.

Network/VPN Overlap How-To with SonicOS 2.0 Enhanced Updated 9/26/03 SonicWALL,Inc. Network/VPN Overlap How-To with SonicOS 2.0 Enhanced Updated 9/26/03 SonicWALL,Inc. Introduction In this whitepaper, we will configure a VPN tunnel between two SonicWALLs running SonicOS 2.0 Enhanced that

More information

Implementing Microsoft Windows Server Failover Clustering (WSFC) and SQL Server 2012 AlwaysOn Availability Groups in the AWS Cloud

Implementing Microsoft Windows Server Failover Clustering (WSFC) and SQL Server 2012 AlwaysOn Availability Groups in the AWS Cloud Implementing Microsoft Windows Server Failover Clustering (WSFC) and SQL Server 2012 AlwaysOn Availability Groups in the AWS Cloud David Pae, Ulf Schoo June 2013 (Please consult http://aws.amazon.com/windows/

More information

Getting Started Guide: Deploying Puppet Enterprise in Microsoft Azure

Getting Started Guide: Deploying Puppet Enterprise in Microsoft Azure Getting Started Guide: Deploying Puppet Enterprise in Microsoft Azure 1 Getting Started Guide with Microsoft Azure Getting Started Guide: Deploying Puppet Enterprise in Microsoft Azure Puppet Enterprise

More information

I. What is VPN? II. Types of VPN connection. There are two types of VPN connection:

I. What is VPN? II. Types of VPN connection. There are two types of VPN connection: Table of Content I. What is VPN?... 2 II. Types of VPN connection... 2 III. Types of VPN Protocol... 3 IV. Remote Access VPN configuration... 4 a. PPTP protocol configuration... 4 Network Topology... 4

More information

Installing and Configuring a SQL Server 2014 Multi-Subnet Cluster on Windows Server 2012 R2

Installing and Configuring a SQL Server 2014 Multi-Subnet Cluster on Windows Server 2012 R2 Installing and Configuring a SQL Server 2014 Multi-Subnet Cluster on Windows Server 2012 R2 Edwin Sarmiento, Microsoft SQL Server MVP, Microsoft Certified Master Contents Introduction... 3 Assumptions...

More information

Getting Started Guide: Deploying Puppet Enterprise in Microsoft Azure

Getting Started Guide: Deploying Puppet Enterprise in Microsoft Azure Getting Started Guide: Deploying Puppet Enterprise in Microsoft Azure 1 Getting Started Guide with Microsoft Azure Getting Started Guide: Deploying Puppet Enterprise in Microsoft Azure Puppet Enterprise

More information

System Center 2012 R2 SP1 Configuration Manager & Microsoft Intune

System Center 2012 R2 SP1 Configuration Manager & Microsoft Intune 2015 System Center 2012 R2 SP1 Configuration Manager & Microsoft Intune DEPLOYING MICROSOFT OFFICE 365 PROFESSIONAL PLUS RONNI PEDERSEN & HANS CHRISTIAN ANDERSEN RONNIPEDERSEN.COM Microsoft MVP: Enterprise

More information

NSi Mobile Installation Guide. Version 6.2

NSi Mobile Installation Guide. Version 6.2 NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...

More information

Microsoft Azure ExpressRoute

Microsoft Azure ExpressRoute Microsoft Azure ExpressRoute Michael Washam Summary: Microsoft Azure ExpressRoute makes it easy to establish dedicated and private circuits between your data center and Microsoft Azure. ExpressRoute connections

More information

Configuring an IPsec VPN to provide ios devices with secure, remote access to the network

Configuring an IPsec VPN to provide ios devices with secure, remote access to the network Configuring an IPsec VPN to provide ios devices with secure, remote access to the network This recipe uses the IPsec VPN Wizard to provide a group of remote ios users with secure, encrypted access to the

More information

If you re not using VMware vsphere Client 5.1, your screens may vary.

If you re not using VMware vsphere Client 5.1, your screens may vary. UNITY EdgeConnect If you re not using VMware vsphere Client 5.1, your screens may vary. VIRTUAL APPLIANCES VMware vsphere / vsphere Hypervisor 2015 Silver Peak Systems, Inc. In-Line Router Mode Before

More information

Quick Start Guide. Citrix XenServer Hypervisor. Server Mode (Single-Interface Deployment) Before You Begin SUMMARY OF TASKS

Quick Start Guide. Citrix XenServer Hypervisor. Server Mode (Single-Interface Deployment) Before You Begin SUMMARY OF TASKS Quick Start Guide VX VIRTUAL APPLIANCES If you re not using Citrix XenCenter 6.0, your screens may vary. Citrix XenServer Hypervisor Server Mode (Single-Interface Deployment) 2013 Silver Peak Systems,

More information

Getting Started w/azure & PowerShell. March 23, 2014

Getting Started w/azure & PowerShell. March 23, 2014 Getting Started w/azure & PowerShell March 23, 2014 Azure & PowerShell Getting Started! [Client logo here] Who am I? Ron Bokleman ron.bokleman@bluemetal.com Senior Architect Cloud & Services. The Cloud

More information

VX 9000E WiNG Express Manager INSTALLATION GUIDE

VX 9000E WiNG Express Manager INSTALLATION GUIDE VX 9000E WiNG Express Manager INSTALLATION GUIDE 2 VX 9000E WiNG Express Manager Service Information If you have a problem with your equipment, contact support for your region. Support and issue resolution

More information

Introduction to DirectAccess in Windows Server 2012

Introduction to DirectAccess in Windows Server 2012 Introduction to DirectAccess in Windows Server 2012 Windows Server 2012 Hands-on lab In this lab, you will configure a Windows 8 workgroup client to access the corporate network using DirectAccess technology,

More information

Administration Guide. . All right reserved. For more information about Specops Gpupdate and other Specops products, visit www.specopssoft.

Administration Guide. . All right reserved. For more information about Specops Gpupdate and other Specops products, visit www.specopssoft. . All right reserved. For more information about Specops Gpupdate and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Gpupdate is a trademark owned by Specops Software.

More information

Module 6. Configuring and Troubleshooting Routing and Remote Access. Contents:

Module 6. Configuring and Troubleshooting Routing and Remote Access. Contents: Configuring and Troubleshooting Routing and Remote Access 6-1 Module 6 Configuring and Troubleshooting Routing and Remote Access Contents: Lesson 1: Configuring Network Access 6-3 Lesson 2: Configuring

More information

The VPNaaS Plugin for Fuel Documentation

The VPNaaS Plugin for Fuel Documentation The VPNaaS Plugin for Fuel Documentation Release 1.2-1.2.0-1 Mirantis Inc. January 14, 2016 CONTENTS 1 Document purpose 1 1.1 Key terms, acronyms and abbreviations................................. 1 1.2

More information

Release Notes. Contents. Release Purpose. Pre-Installation Recommendations. Platform Compatibility. Dell SonicWALL Global VPN Client 4.

Release Notes. Contents. Release Purpose. Pre-Installation Recommendations. Platform Compatibility. Dell SonicWALL Global VPN Client 4. Global VPN Client Dell SonicWALL Global VPN Client 4.9 Release Notes SonicOS Contents Release Purpose... 1 Pre-Installation Recommendations... 1 Platform Compatibility... 1 Known Issues... 2 Resolved Issues...

More information

Appendix B Lab Setup Guide

Appendix B Lab Setup Guide JWCL031_appB_467-475.indd Page 467 5/12/08 11:02:46 PM user-s158 Appendix B Lab Setup Guide The Windows Server 2008 Applications Infrastructure Configuration title of the Microsoft Official Academic Course

More information

Configuring Windows 2000/XP IPsec for Site-to-Site VPN

Configuring Windows 2000/XP IPsec for Site-to-Site VPN IPsec for Site-to-Site VPN November 2002 Copyright 2002 SofaWare Technologies Inc, All Rights Reserved. Reproduction, adaptation, or translation with prior written permission is prohibited except as allowed

More information

Virtual Appliances. Virtual Appliances: Setup Guide for Umbrella on VMWare and Hyper-V. Virtual Appliance Setup Guide for Umbrella Page 1

Virtual Appliances. Virtual Appliances: Setup Guide for Umbrella on VMWare and Hyper-V. Virtual Appliance Setup Guide for Umbrella Page 1 Virtual Appliances Virtual Appliances: Setup Guide for Umbrella on VMWare and Hyper-V Virtual Appliance Setup Guide for Umbrella Page 1 Table of Contents Overview... 3 Prerequisites... 4 Virtualized Server

More information

Course Syllabus. Fundamentals of Windows Server 2008 Network and Applications Infrastructure. Key Data. Audience. Prerequisites. At Course Completion

Course Syllabus. Fundamentals of Windows Server 2008 Network and Applications Infrastructure. Key Data. Audience. Prerequisites. At Course Completion Key Data Product #: 3380 Course #: 6420A Number of Days: 5 Format: Certification Exams: Instructor-Led None This course syllabus should be used to determine whether the course is appropriate for the students,

More information

Web Sites, Virtual Machines, Service Management Portal and Service Management API Beta Installation Guide

Web Sites, Virtual Machines, Service Management Portal and Service Management API Beta Installation Guide Web Sites, Virtual Machines, Service Management Portal and Service Management API Beta Installation Guide Contents Introduction... 2 Environment Topology... 2 Virtual Machines / System Requirements...

More information

Installing Samsung SDS CellWe EMM cloud connectors and administrator consoles

Installing Samsung SDS CellWe EMM cloud connectors and administrator consoles Appendix 1 Installing Samsung SDS CellWe EMM cloud connectors and administrator consoles This section explains how you use the Cloud Management Suite installation wizard for the following purposes: To

More information

USER GUIDE. Ethernet Configuration Guide (Lantronix) P/N: 2900-300321 Rev 6

USER GUIDE. Ethernet Configuration Guide (Lantronix) P/N: 2900-300321 Rev 6 KRAMER ELECTRONICS LTD. USER GUIDE Ethernet Configuration Guide (Lantronix) P/N: 2900-300321 Rev 6 Contents 1 Connecting to the Kramer Device via the Ethernet Port 1 1.1 Connecting the Ethernet Port Directly

More information

Every Silver Lining Has a Vault in the Cloud

Every Silver Lining Has a Vault in the Cloud Irvin Hayes Jr. Autodesk, Inc. PL6015-P Don t worry about acquiring hardware and additional personnel in order to manage your Vault software installation. Learn how to spin up a hosted server instance

More information

SonicWALL SRA Virtual Appliance Getting Started Guide

SonicWALL SRA Virtual Appliance Getting Started Guide COMPREHENSIVE INTERNET SECURITY SonicWALL Secure Remote Access Appliances SonicWALL SRA Virtual Appliance Getting Started Guide SonicWALL SRA Virtual Appliance5.0 Getting Started Guide This Getting Started

More information

HDA Integration Guide. Help Desk Authority 9.0

HDA Integration Guide. Help Desk Authority 9.0 HDA Integration Guide Help Desk Authority 9.0 2011ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the ScriptLogic logo and Point,Click,Done! are trademarks and registered trademarks of ScriptLogic

More information

The steps will take about 4 hours to fully execute, with only about 60 minutes of user intervention. Each of the steps is discussed below.

The steps will take about 4 hours to fully execute, with only about 60 minutes of user intervention. Each of the steps is discussed below. Setup Guide for the XenApp on AWS CloudFormation Template This document walks you through the steps of using the Citrix XenApp on AWS CloudFormation template (v 4.1.5) available here to create a fully

More information

Lab - Using Wireshark to View Network Traffic

Lab - Using Wireshark to View Network Traffic Topology Objectives Part 1: (Optional) Download and Install Wireshark Part 2: Capture and Analyze Local ICMP Data in Wireshark Start and stop data capture of ping traffic to local hosts. Locate the IP

More information

LAB 1: Installing Active Directory Federation Services

LAB 1: Installing Active Directory Federation Services LAB 1: Installing Active Directory Federation Services Contents Lab: Installing and Configuring Active Directory Federation Services... 2 Exercise 1: installing and configuring Active Directory Federation

More information

SQL Server Business Intelligence

SQL Server Business Intelligence SQL Server Business Intelligence Setup and Configuration Guide Himanshu Gupta Technology Solutions Professional Data Platform Contents 1. OVERVIEW... 3 2. OBJECTIVES... 3 3. ASSUMPTIONS... 4 4. CONFIGURE

More information

Deploying Personal Virtual Desktops by Using RemoteApp and Desktop Connection Step-by-Step Guide

Deploying Personal Virtual Desktops by Using RemoteApp and Desktop Connection Step-by-Step Guide c623242f-20f0-40fe-b5c1-8412a094fdc7 Deploying Personal Virtual Desktops by Using RemoteApp and Desktop Connection Step-by-Step Guide Microsoft Corporation Published: June 2009 Updated: April 2010 Abstract

More information

Deploy XenApp 7.5 and 7.6 and XenDesktop 7.5 and 7.6 with Amazon VPC

Deploy XenApp 7.5 and 7.6 and XenDesktop 7.5 and 7.6 with Amazon VPC XenApp 7.5 and 7.6 and XenDesktop 7.5 and 7.6 Deploy XenApp 7.5 and 7.6 and XenDesktop 7.5 and 7.6 with Amazon VPC Prepared by: Peter Bats Commissioning Editor: Linda Belliveau Version: 5.0 Last Updated:

More information

Global VPN Client Getting Started Guide

Global VPN Client Getting Started Guide Global VPN Client Getting Started Guide 1 Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your system. CAUTION: A CAUTION indicates potential

More information

JMC Next Generation Web-based Server Install and Setup

JMC Next Generation Web-based Server Install and Setup JMC Next Generation Web-based Server Install and Setup This document will discuss the process to install and setup a JMC Next Generation Web-based Windows Server 2008 R2. These instructions also work for

More information

Building a SharePoint 2010 Virtual Machine

Building a SharePoint 2010 Virtual Machine Building a SharePoint 2010 Virtual Machine Overview: This document provides links to Internet resources and step by step instructions for building a Virtual Machine (VM) sample SharePoint Server 2010 environment.

More information

Virtualizing your Datacenter

Virtualizing your Datacenter Virtualizing your Datacenter with Windows Server 2012 R2 & System Center 2012 R2 Part 2 Hands-On Lab Step-by-Step Guide For the VMs the following credentials: Username: Contoso\Administrator Password:

More information

Active Directory integration with CloudByte ElastiStor

Active Directory integration with CloudByte ElastiStor Active Directory integration with CloudByte ElastiStor Prerequisite Change the time and the time zone of the Active Directory Server to the VSM time and time zone. Enabling Active Directory at VSM level

More information

Setting Up a Backup Domain Controller

Setting Up a Backup Domain Controller Setting Up a Backup Domain Controller June 27, 2012 Copyright 2012 by World Class CAD, LLC. All Rights Reserved. A Backup Domain Controller After setting up a primary domain controller, we will want to

More information

TechNote. Configuring SonicOS for Amazon VPC

TechNote. Configuring SonicOS for Amazon VPC Network Security SonicOS Contents Overview... 1 System or Network Requirements / Prerequisites... 3 Deployment Considerations... 3 Configuring Amazon VPC with a Policy-Based VPN... 4 Configuring Amazon

More information

Active Directory in EC2: Basic Forest

Active Directory in EC2: Basic Forest Active Directory in EC2: Basic Forest Requirements: At least two instances. This exercise assumes that they re all Windows 2008. For the multi-instance ping check, you ll need three instances. A unique

More information

Table of Contents Introduction... 2 Azure ADSync Requirements/Prerequisites:... 2 Software Requirements... 2 Hardware Requirements...

Table of Contents Introduction... 2 Azure ADSync Requirements/Prerequisites:... 2 Software Requirements... 2 Hardware Requirements... Table of Contents Introduction... 2 Azure ADSync Requirements/Prerequisites:... 2 Software Requirements... 2 Hardware Requirements... 2 Service Accounts for Azure AD Sync Tool... 3 On Premises Service

More information

Virtual Appliance Setup Guide

Virtual Appliance Setup Guide The Barracuda SSL VPN Vx Virtual Appliance includes the same powerful technology and simple Web based user interface found on the Barracuda SSL VPN hardware appliance. It is designed for easy deployment

More information