SlideShare una empresa de Scribd logo
1 de 71
Hybrid Cloud with Microsoft Azure
Aidan Finn
About Aidan Finn
• Technical Sales Lead at MicroWarehouse
• Working in IT since 1996
• MVP (Virtual Machine)
• Experienced with Windows Server/Desktop,
System Center, virtualisation, and IT
infrastructure
• @joe_elway
• http://www.aidanfinn.com
• http://www.petri.co.il/author/aidan-finn
• Published author/contributor of several books
Agenda
• What is cloud computing?
• Introducing Microsoft Azure
• Azure IaaS
– Storage
– Virtual networking
– Virtual machines
– Hybrid cloud networking
– Azure Site Recovery
– Azure RemoteApp
• If we have time … System Center & Azure
What is Cloud Computing?
What is a cloud?
• According to NIST (USA National Institute of
Standards and Technology), a cloud’s
characteristics are:
– On-demand self-service
– Broad network access
– Resource pooling
– Rapid elasticity
– Measured service
• In other words:
– More than just virtualization
– “Self-service” indicates large size
Cloud Models & Deployments
Public Cloud Private Cloud Hybrid Cloud
SaaS Bing,
Office 365, Outlook.com,
Google Apps
Salesforce
Office 365
PaaS Microsoft Azure,
Facebook
Pivotal CF
IaaS Microsoft Azure,
Windows Azure Pack,
OpenStack,
AWS,
Google Compute Engine
Windows Azure Pack,
OpenStack,
vCloud Suite
Microsoft “Cloud
OS”
The Cloud OS
Microsoft’s vision of the
unified platform for
modern business:
– Transforms the
datacenter
– Unlocks insights on any
data
– Empowers people-
centric IT
– Enables modern
business apps
HYBRID Cloud
• Microsoft Corporation is selling hybrid cloud
– On-premises servers still required
– Extend facilities into Azure and hosting partner
clouds
• Run:
– Hyper-V + System Center on premises
– Hosting partner: Hyper-V + System Center + WAP
– Microsoft Azure
Introducing Microsoft
Azure
Microsoft Azure
• Microsoft’s public cloud, offering IaaS and
PaaS
• Based on … Windows Server 2012 Hyper-V
– Rumoured to be 17% of global servers sales
– Tell me Hyper-V doesn’t scale!!!
– One consistent platform for private, public, and
hybrid cloud: Hyper-V virtual machines
• Incredibly innovative data centres
– Signed NDAs so I’ll leave it there 
Cloud Scalability
• Only 2 clouds can rival
Azure for scale (AWS and
Google)
• Take what you need,
never let IT limit business
growth
• Place services close to
customers … everywhere
• Local regions:
– Europe North: Dublin
– Europe West: Amsterdam
“Purchasing” Azure
• Think of it as a complicated mobile phone/data
service
– You take what you need and pay for what you use
• Three purchasing methods:
– Credit card: monthly bill
– Enterprise Agreement: pre-paid credit for large
enterprises
– Open (from August 1st 2014): pre-paid credit for SMEs
• Not easy to forecast
– Trials and PoCs are important
On To The Fun Stuff …
Microsoft Azure IaaS
Managing Azure
• One portal to manage all aspects of Azure IaaS
– https://manage.windowsazure.com
• New portal on the way
– https://portal.azure.com
– Health and subscription information more visible
• PowerShell cmdlets
– Scripting always gives more control
– Some features require PoSH, e.g. static IP address
• Microsoft Azure Automation
– Orchestration based on WAP Service Management
Automation (SMA)
– PowerShell workflows
Management Certificates
• Used by tools such as PowerShell to authenticate with
Azure
• Create certificate public/private pair
– Does not need public trust
– Use MakeCert
http://msdn.microsoft.com/library/azure/gg551722.aspx
• 2 files:
– .PFX private file loaded into personal certificate store
– .CER public file uploaded to Azure
• Install the Azure PowerShell Module
– Using the Web Platform Installer
http://www.microsoft.com/web/downloads/platform.aspx
– Import-Module Azure
Demo – Managing Azure
Azure IaaS
Microsoft Azure IaaS
• Infrastructure services based on:
– Web sites > skipping this today due to time and
“easy factor”
– Storage
– Networking
– Virtual machines
• Solutions based on one or more of those
components
Fault Domains
• Azure is built to cloud scalability
• The focus is on service uptime, not server uptime
• Imagine a rack that has single:
– Power supply
– Network connection
• Racks are deployed in groups of 3
– One rack can fail/maintenance, others stay online
• These are fault domains
• A service that lives entirely in a single fault domain will
suffer downtime:
– Planned maintenance
– Unplanned outages (during failover)
• Service instances should span multiple fault domains
Load-Balanced Sets
• Typically deployed when creating multiple
instances of an identical web application
• For example, the public IP is load balanced on TCP
80 and TCP 443 across multiple web servers
• Two objectives:
– Increase scalability
– Fault tolerance
• Internal load balancing (non public tiers) is
available now
– Only via PowerShell
Availability Sets
• Virtual machines in the same availability set will reside
in different fault domains
• Place tiers of a service into availability sets
– Example: 3 load balanced VMs
– Each VM added to availability set
– Each VM is automatically placed in a different fault domain
– Host outage/maintenance leaves the service online
• Might have availability sets for:
– Web tier
– Application tier
– Data tier
• Availability sets required for 99.95% uptime – VM
external access
Load-Balanced & Availability Sets
Rack 1 Rack 2 Rack 3
Public IP Address
Availability Set
Load-Balanced Set
Azure Storage
Blobs
• Azure stores stuff in blobs
– A blob is a multipurpose storage system
• We can create blobs to store:
– VMs (VHD files only!)
– Big data
– Templates
– Online backup and more
• Replicated storage:
– Locally redundant (cheapest): 3 copies stored in one region
– Geo redundant (default): 3 copies in region + 3 more in
neighbouring region
– Read-access geo redundant: 3 copies in region + 3 READ ONLY
copies in neighbouring region
– Zone Redundant Storage (future): 3 copies in one or two regions
Demo – Create a Blob
Browsing Blobs
• Can be done in the portal
• Can also use 3rd-party tools to remotely connect
to/browse a blob
– Similar to an FTP tool
– Comparisons:
http://blogs.msdn.com/b/windowsazurestorage/archi
ve/2014/03/11/windows-azure-storage-explorers-
2014.aspx
• Requires:
– Storage account name
– Primary access key
Importing LOTS Of Data To Azure
Online Backup
• Use Azure blobs for backup
– Primary backup: Windows Server Backup (W2008 R2
SP1 and later)
– Off-site secondary backup: DPM, Commvault, CA
• Create a new Recovery Services > Backup Vault
• Install PFX/Private certificate on the server that
will be backed up
• Upload the paired public CER/public cert to the
backup vault
• Follow vendor specific instructions to enable
backup
Demo – Azure Online Backup
StorSimple
• Tired Storage:
– Hot: Local SSD
– Warm: Local SAS
– Cold: Azure blob
• 1 GbE iSCSI appliance
– Xyratex (Mexico)
• NOT A SAN REPLACEMENT
– Use for specific roles
– Small working set of data
Virtual Networking
Cloud Service
• A high level concept
• Has a single public IP address that you can NAT
– Known as Virtual IP Address (VIP)
– Ports of the VIP are NATed to VMs or load-balancer
rules
• Think of it this way:
– Each isolated service/network should require a
cloud service
Cloud Service Reserved IP
• The VIP is not reserved by default for the cloud service
• A VIP remains with a cloud service as long as the cloud
service remains operational
– Running out of credit will offline a cloud service
• You can reserve a VIP
– #Reserve a IP
New-AzureReservedIP -ReservedIPName EastUSVIP -Label
"Reserved VIP in EastUS" -Location "East US"
– #Use the Reserved IP during deployment
New-AzureVM -ServiceName "MyApp" -VMs $web1 -
Location "East US" -VNetName VNetUSEast -
ReservedIPName EastUSVIP
• Portal management to come in a future release
Virtual Networks
• Software-defined networking (SDN)
– Same concept as Hyper-V Network Virtualization
• Carve out your own network and subnets
– No need to wait for Azure administrators
• Must be in:
– 10.0.0.0
– 172.16.0.0
– 192.168.0.0
• Define your own subnet mask and subnets
• Example:
– Virtual network: 10.0.0.0/16
– Subnet-1: 10.0.0.0/24
– Subnet-2: 10.0.1.0/24
– Subnet-3: 10.0.2.0/24
Demo – Creating Virtual Networks
Virtual Network IP Addresses
• First IP address available is .4
• Default gateway is .1
• Azure VMs can have a single NIC
• IP addresses are automatically assigned to VMs
– Guest OS will think it has a DHCP address
– Not actually DHCP
– Not static either
• IP remains with a VM while it remains operational
– Not guaranteed to return to a VM after being offline
– Can cause issues with name/IP relationship
• Can use PowerShell to statically assign an IP address
Persistent Azure VM IP Addresses
Requires some PowerShell:
1. Stop-AzureVM -ServiceName “DemoService”
-Name “VM01“
2. Get-AzureVM -ServiceName “DemoService” -
Name “VM01” | Set-AzureStaticVNetIP -
IPAddress "10.0.0.4" | Update-AzureVM
3. Start-AzureVM -ServiceName “DemoService"
-Name “VM01"
Network Isolation
• A virtual network is isolated
• You choose what, if any, external ports are
opened
• Virtual subnets inside of a virtual network are
able to route to each other
• Isolation inside of a virtual network:
– Windows Firewall
– IPsec
• VNet to VNet connectivity
– Enable isolated VNets to route to each other
– http://msdn.microsoft.com/library/azure/dn690122.as
px
Hybrid Cloud Networking
Connecting Networks
• For all but a few services, disconnected
services are useless
• Extend your on-premises network into Azure
• Have private connection to Azure
• Extend on-premises management into Azure
• Two options:
– Site-to-site VPN
– ExpressRoute
Site-to-Site VPN
• Create encrypted tunnel
into an Azure virtual
network
• Routing between sites
• Extend your network
into Azure
• A number of supporting
devices, including
Watchguard
Watchguard
XTM
Microsoft Azure
On-Premise
Internet
Site-to-Site VPN Endpoints
Create a Site-to-Site VPN
• WatchGuard instructions:
http://customers.watchguard.com/articles/Article
/Configure-a-VPN-connection-to-a-Windows-
Azure-virtual-network/
• Record:
– Local Gateway ID: Your public VPN IP
– Remote Gateway ID: Azure public VPN IP
– Shared Key: The Azure secret VPN key
– Local Network IP Address: The local address space
– Remote Network IP Address: The Azure address space
Site-to-Site VPN Solution
• Can take a little while to come online on the
Azure end
• You have simultaneous:
– Direct Internet access
– Site-to-Site VPN routing to Azure Virtual Network
• Can extend services into Azure
– Active Directory
– SQL Always On
– And much more
Pros/Cons of Site-to-Site VPN
• Pros:
– Quick to deploy
– Very affordable
– You are in control
• Cons:
– Local VPN site is bottleneck
– That site is also a point of failure
– Can’t implement SLA on VPN because it uses public
Internet for the tunnel
– It routes only virtual network traffic. What about other
Azure services?
ExpressRoute
• Site-to-Site VPN extends your network into an
Azure virtual network
• Azure data center services are added to your
WAN using ExpressRoute partner
– Not just virtual networks
– Everything: virtual networks, StorSimple, RDS, backup,
replication, …
• Two flavours of ExpressRoute that use MPLS
WANs
• Local service providers:
– BT: Network service provider
– Telecity: Exchange provider
ExpressRoute Flavours
Public
internet
Microsoft
Azure
Public
internet
Microsoft
Azure
Pros/Cons of Site-to-Site VPN
• Pros:
– Includes all Azure services
– No single point of network failure
– No site is a bottleneck for other sites
– Is subject to service provider SLA
• Cons:
– Requires MPLS contract
– More expensive than site-to-site VPN
– Slower to deploy
Azure VMs
What Are Azure VMs?
• Pretty much like Generation 1 Hyper-V virtual machines
– Single virtual NIC
– VHD only
• Files stored in a blob
• Uses a D: drive for non-persistent data
– Do not delete or use this drive
• Add additional drives for data
– Examples: SQL database, AD database files
• Can store application data on SMB 2.01 shared folders
– Example: IIS shared content
• More supported versions of Linux than Windows!!!
Deploying Azure VMs?
Multiple options:
• Deploy VMs from Azure gallery
• Create a template in Azure
http://azure.microsoft.com/documentation/articles/virtual-
machines-capture-image-windows-server/
• Upload a custom template into Azure
http://azure.microsoft.com/documentation/articles/virtual-
machines-create-upload-vhd-windows-server/
• From vSphere to Azure using MVMC 2.0
http://vniklas.djungeln.se/2014/04/08/using-mvmc-2-0-to-
migrate-a-vmware-vm-to-azure-iaas/
• Upload a Hyper-V virtual machine
http://michaelwasham.com/2013/01/04/migrate-a-virtual-
machine-to-windows-azure-with-powershell/
Antivirus
Demo - Deploying an Azure VM
• Myth: “Why would I put my applications in the cloud where
anyone can get at them?!”
– You decide what services are publicly visible
– No different to what you do now
• We configure Endpoints to NAT ports through the cloud
service VIP (public IP address)
• Examples:
– VIP:TCP80 -> 10.0.0.4:TCP80
– VIP:TCP21 -> 10.0.0.5:TCP21
– VIP:TCP443 -> 10.0.0.6:TCP443
• You can close everything for complete privacy
• By default, VMs created in the portal will have these open:
– TCP 5986 (PowerShell remote administration)
– TCP 3389 (Remote Desktop)
Endpoints
Demo – Endpoints & Load
Balanced Sets
• Advanced configuration options:
– Change a virtual machine’s specification
• Tier: Basic/Standard
• Size
• Availability set
– Monitoring (Preview)
• Test a cloud service’s web app from multiple global
locations
• Monitoring VMs
– High level metrics utilization
– Between 1 hour and 7 days of data
Configuring & Monitoring VMs
Demo – Configure & Monitor VMs
• Services can have increases/drops in demand
• Cloud is elastic
– Quickly grow/shrink
– Very affordable compared to on-premise capital +
operational expenditure
• Autoscaling enables you to:
– Deploy & configure lots of virtual machines
– Add them to an availability set
– Turn on/off VMs based on demand
– Note: powered off VMs only have a storage cost
Autoscaling VMs
• Normally VMs use cloud service VIPs and
Endpoints to be publicly accessible
• Not all services work well with NAT
• In preview today, you can reserve a public IP
address for a VM
– No longer using NAT behind the cloud service VIP
– Maybe publish FTP
– Monitor publicly accessible VMs via public IP
• Only available via PowerShell
– Requires new VMs and new virtual networks
Instance-Level Public IP Address
Azure Site Recovery
• Problem: DR/BC is expensive
• Partial solution: Hyper-V Replica
– Async VM replication built-into all versions of 2012
and later Hyper-V
• Problem: DR sites are expensive
– Solution: Use Azure Site Recovery (ASR)
• Preview starting June 2014
DR-as-a-Service (DRaaS)
• ASR is built on Hyper-V Recovery Manager (HRM)
• HRM offers orchestration of Hyper-V Replica
between two sites
– Even two privately owned sites
• Problems:
– HRM is expensive: €11.92/protected VM/month
– Requires SCVMM to be deployed on premises
• Licensing too expensive for most SMEs
• Consultants failing to deploy/configure SCVMM properly for
those who can afford it
DR Orchestration
Azure Automation
• Very similar to WAP Service Management
Automation (SMA)
• Create runbooks
– PowerShell workflows
– PowerShell is in everything Microsoft
– Tip: Learn PowerShell or hit your career ceiling now
• Automate actions in the cloud and on-premises
via hybrid cloud
• Doing something twice?
– Automate it
– Time investment up front will pay dividends
– The more you do it, the easier it gets
Orchestration in the Cloud
Azure Remote App
• Client/Server programs will eventually become web
services driven mobile apps
• Until then, we need to support traditional desktop apps
– For cloud-based services
– On cross-platform devices
• You can deploy RDS in Azure VMs
– Requires RDS SALs through SPLA licensing
• Or you can deploy “Mohoro” aka Azure Remote App
– A multi-tenant RDS farm in the cloud run by Microsoft
– Currently in preview
– Clients include Windows, Android, iOS, and Mac OS X
RDS In The Cloud
One Piece Of Advice
• Forget releases every 3 years
– Windows Server & System Center out every 12-18
months
– vNext expected in April 2015
• With Azure it’s more like every few weeks
• Microsoft now doing “sprint development”
• Features announced on Azure & ScottGu blogs
• Learning has never been as important
– Forget traditional learning sources
– If you work for a MSFT partner, then watch for news
from MicroWarehouse
Learning
And If We Have Time …
System Center
• Orchestrator
– Add a subscription to the portal
– Enable end users to deploy VMs under IT management
• Operations Manager
– Azure Management Pack: Monitor your Azure subscription
– Global Service Monitoring: Monitor web services from Microsoft data
centers
– System Center Advisor: Additional monitoring from the cloud
• Data Protection Manager
– Azure Online Backup: Using blobs for secondary storage
• Windows Azure Pack
– Azure AD authentication via ADFS: Scale-out identity
• Configuration Manager
– Windows Intune: Cloud-based mobile device/app management
– Cloud-based distribution point: Internet-based clients
System Center & Microsoft Azure
Thank you!
Aidan Finn, Hyper-V MVP
Technical Sales Lead, MicroWarehouse Ltd.
http://www.mwh.ie
Twitter: @joe_elway
Blog: http://www.aidanfinn.com
Petri IT Knowledgebase: http://www.petri.co.il/author/aidan-finn

Más contenido relacionado

La actualidad más candente

Azure News Slides for October2017 - Azure Nights User Group
Azure News Slides for October2017 - Azure Nights User GroupAzure News Slides for October2017 - Azure Nights User Group
Azure News Slides for October2017 - Azure Nights User GroupMichael Frank
 
AWS Webcast - How to Architect and Deploy a Multi-Tier SharePoint Server Farm...
AWS Webcast - How to Architect and Deploy a Multi-Tier SharePoint Server Farm...AWS Webcast - How to Architect and Deploy a Multi-Tier SharePoint Server Farm...
AWS Webcast - How to Architect and Deploy a Multi-Tier SharePoint Server Farm...Amazon Web Services
 
Windows azure pack overview
Windows azure pack overviewWindows azure pack overview
Windows azure pack overviewAbhishek Sur
 
Azure integration in dynamic crm
Azure integration in dynamic crmAzure integration in dynamic crm
Azure integration in dynamic crmssuser93127c1
 
Amazon WorkSpaces - Fully Managed Desktops in the Cloud
Amazon WorkSpaces - Fully Managed Desktops in the CloudAmazon WorkSpaces - Fully Managed Desktops in the Cloud
Amazon WorkSpaces - Fully Managed Desktops in the CloudAmazon Web Services
 
AWS June Webinar Series - Deep dive: Hybrid Architectures
AWS June Webinar Series - Deep dive: Hybrid ArchitecturesAWS June Webinar Series - Deep dive: Hybrid Architectures
AWS June Webinar Series - Deep dive: Hybrid ArchitecturesAmazon Web Services
 
Deploy, Scale and Manage your Microsoft Investments with AWS
Deploy, Scale and Manage your Microsoft Investments with AWSDeploy, Scale and Manage your Microsoft Investments with AWS
Deploy, Scale and Manage your Microsoft Investments with AWSAmazon Web Services
 
Load Balancers vs IIS ARR or a Web Application Proxy (WA) for HA
Load Balancers vs IIS ARR or a Web Application Proxy (WA) for HALoad Balancers vs IIS ARR or a Web Application Proxy (WA) for HA
Load Balancers vs IIS ARR or a Web Application Proxy (WA) for HAKemp
 
Cloud Architecture: Patterns and Best Practices
Cloud Architecture: Patterns and Best PracticesCloud Architecture: Patterns and Best Practices
Cloud Architecture: Patterns and Best PracticesSascha Möllering
 
Deploy, Scale and Manage your Microsoft Investments with AWS
Deploy, Scale and Manage your Microsoft Investments with AWSDeploy, Scale and Manage your Microsoft Investments with AWS
Deploy, Scale and Manage your Microsoft Investments with AWSAmazon Web Services
 
Comparison of Cloud Providers
Comparison of Cloud ProvidersComparison of Cloud Providers
Comparison of Cloud ProvidersSabapathy Murthi
 
Digital transformation with Azure & Azure Stack
Digital transformation with Azure & Azure StackDigital transformation with Azure & Azure Stack
Digital transformation with Azure & Azure StackAymen Mami
 
Openstack - Enterprise cloud management platform
Openstack - Enterprise cloud management platformOpenstack - Enterprise cloud management platform
Openstack - Enterprise cloud management platformNagaraj Shenoy
 
AWS Webinar: How to architect and deploy a multi tier share point server farm...
AWS Webinar: How to architect and deploy a multi tier share point server farm...AWS Webinar: How to architect and deploy a multi tier share point server farm...
AWS Webinar: How to architect and deploy a multi tier share point server farm...Amazon Web Services
 
Amazon WorkSpaces - Fully Managed Desktops in the Cloud
Amazon WorkSpaces - Fully Managed Desktops in the Cloud Amazon WorkSpaces - Fully Managed Desktops in the Cloud
Amazon WorkSpaces - Fully Managed Desktops in the Cloud Amazon Web Services
 

La actualidad más candente (20)

04 Azure IAAS 101
04 Azure IAAS 10104 Azure IAAS 101
04 Azure IAAS 101
 
Azure News Slides for October2017 - Azure Nights User Group
Azure News Slides for October2017 - Azure Nights User GroupAzure News Slides for October2017 - Azure Nights User Group
Azure News Slides for October2017 - Azure Nights User Group
 
AWS Webcast - How to Architect and Deploy a Multi-Tier SharePoint Server Farm...
AWS Webcast - How to Architect and Deploy a Multi-Tier SharePoint Server Farm...AWS Webcast - How to Architect and Deploy a Multi-Tier SharePoint Server Farm...
AWS Webcast - How to Architect and Deploy a Multi-Tier SharePoint Server Farm...
 
Windows azure pack overview
Windows azure pack overviewWindows azure pack overview
Windows azure pack overview
 
Azure integration in dynamic crm
Azure integration in dynamic crmAzure integration in dynamic crm
Azure integration in dynamic crm
 
Amazon WorkSpaces - Fully Managed Desktops in the Cloud
Amazon WorkSpaces - Fully Managed Desktops in the CloudAmazon WorkSpaces - Fully Managed Desktops in the Cloud
Amazon WorkSpaces - Fully Managed Desktops in the Cloud
 
Microsoft azure pack overview
Microsoft azure pack overviewMicrosoft azure pack overview
Microsoft azure pack overview
 
AWS June Webinar Series - Deep dive: Hybrid Architectures
AWS June Webinar Series - Deep dive: Hybrid ArchitecturesAWS June Webinar Series - Deep dive: Hybrid Architectures
AWS June Webinar Series - Deep dive: Hybrid Architectures
 
Build cloud os in one day belgium
Build cloud os in one day   belgiumBuild cloud os in one day   belgium
Build cloud os in one day belgium
 
Deploy, Scale and Manage your Microsoft Investments with AWS
Deploy, Scale and Manage your Microsoft Investments with AWSDeploy, Scale and Manage your Microsoft Investments with AWS
Deploy, Scale and Manage your Microsoft Investments with AWS
 
Azure DBA with IaaS
Azure DBA with IaaSAzure DBA with IaaS
Azure DBA with IaaS
 
Load Balancers vs IIS ARR or a Web Application Proxy (WA) for HA
Load Balancers vs IIS ARR or a Web Application Proxy (WA) for HALoad Balancers vs IIS ARR or a Web Application Proxy (WA) for HA
Load Balancers vs IIS ARR or a Web Application Proxy (WA) for HA
 
Cloud Architecture: Patterns and Best Practices
Cloud Architecture: Patterns and Best PracticesCloud Architecture: Patterns and Best Practices
Cloud Architecture: Patterns and Best Practices
 
Deploy, Scale and Manage your Microsoft Investments with AWS
Deploy, Scale and Manage your Microsoft Investments with AWSDeploy, Scale and Manage your Microsoft Investments with AWS
Deploy, Scale and Manage your Microsoft Investments with AWS
 
Comparison of Cloud Providers
Comparison of Cloud ProvidersComparison of Cloud Providers
Comparison of Cloud Providers
 
Digital transformation with Azure & Azure Stack
Digital transformation with Azure & Azure StackDigital transformation with Azure & Azure Stack
Digital transformation with Azure & Azure Stack
 
Openstack - Enterprise cloud management platform
Openstack - Enterprise cloud management platformOpenstack - Enterprise cloud management platform
Openstack - Enterprise cloud management platform
 
Google Cloud Platform Certification Cloud Architect Exam Prep Review Virtual ...
Google Cloud Platform Certification Cloud Architect Exam Prep Review Virtual ...Google Cloud Platform Certification Cloud Architect Exam Prep Review Virtual ...
Google Cloud Platform Certification Cloud Architect Exam Prep Review Virtual ...
 
AWS Webinar: How to architect and deploy a multi tier share point server farm...
AWS Webinar: How to architect and deploy a multi tier share point server farm...AWS Webinar: How to architect and deploy a multi tier share point server farm...
AWS Webinar: How to architect and deploy a multi tier share point server farm...
 
Amazon WorkSpaces - Fully Managed Desktops in the Cloud
Amazon WorkSpaces - Fully Managed Desktops in the Cloud Amazon WorkSpaces - Fully Managed Desktops in the Cloud
Amazon WorkSpaces - Fully Managed Desktops in the Cloud
 

Destacado

Microsoft Azure & Hybrid Cloud
Microsoft Azure & Hybrid CloudMicrosoft Azure & Hybrid Cloud
Microsoft Azure & Hybrid CloudAidan Finn
 
Azure Stack - Azure in your own Data Center
Azure Stack - Azure in your own Data CenterAzure Stack - Azure in your own Data Center
Azure Stack - Azure in your own Data CenterAdnan Hashmi
 
Choosing Public vs. Private vs. Hybrid Cloud Computing
Choosing Public vs. Private vs. Hybrid Cloud ComputingChoosing Public vs. Private vs. Hybrid Cloud Computing
Choosing Public vs. Private vs. Hybrid Cloud ComputingSkytap Cloud
 
MS Cloud Summit Paris 2017 - Azure Stack
MS Cloud Summit Paris 2017 - Azure StackMS Cloud Summit Paris 2017 - Azure Stack
MS Cloud Summit Paris 2017 - Azure StackBenoît SAUTIERE
 
Microsoft Azure Stack
Microsoft Azure StackMicrosoft Azure Stack
Microsoft Azure StackTudor Damian
 
Microsoft Azure
Microsoft AzureMicrosoft Azure
Microsoft AzureNovosco
 
Ubunto Server VPN Implementation
Ubunto Server VPN ImplementationUbunto Server VPN Implementation
Ubunto Server VPN ImplementationDaisy LaFlamme
 
Unbreakable SharePoint 2016 with SQL Server 2016 Always On Availability groups
Unbreakable SharePoint 2016 with SQL Server 2016 Always On Availability groupsUnbreakable SharePoint 2016 with SQL Server 2016 Always On Availability groups
Unbreakable SharePoint 2016 with SQL Server 2016 Always On Availability groupsserge luca
 
FROM ON-PREMISE TO THE HYBRID CLOUD WITH MICROSOFT AZURE
FROM ON-PREMISE TO THE HYBRID CLOUD WITH MICROSOFT AZUREFROM ON-PREMISE TO THE HYBRID CLOUD WITH MICROSOFT AZURE
FROM ON-PREMISE TO THE HYBRID CLOUD WITH MICROSOFT AZUREDotNetCampus
 
From on premise to the hybrid cloud with microsoft azure
From on premise to the hybrid cloud with microsoft azureFrom on premise to the hybrid cloud with microsoft azure
From on premise to the hybrid cloud with microsoft azureDotNetCampus
 
Azure architecture
Azure architectureAzure architecture
Azure architectureAmal Dev
 
Azure Resource Manager Templates
Azure Resource Manager TemplatesAzure Resource Manager Templates
Azure Resource Manager TemplatesBenjamin Hüpeden
 
Windows Azure and the Hybrid Cloud
Windows Azure and the Hybrid CloudWindows Azure and the Hybrid Cloud
Windows Azure and the Hybrid CloudWindows Azure
 
Building Big data solutions in Azure
Building Big data solutions in AzureBuilding Big data solutions in Azure
Building Big data solutions in AzureMostafa
 
Improving Application Security With Azure
Improving Application Security With AzureImproving Application Security With Azure
Improving Application Security With AzureSoftchoice Corporation
 
Big data on Azure for Architects
Big data on Azure for ArchitectsBig data on Azure for Architects
Big data on Azure for ArchitectsTomasz Kopacz
 
Architecting azure IaaS Solutions
Architecting azure IaaS SolutionsArchitecting azure IaaS Solutions
Architecting azure IaaS Solutionsswapnilrkambli
 
RightScale Webinar: The Five Critical Steps to Develop a Cloud Strategy
RightScale Webinar: The Five Critical Steps to Develop a Cloud StrategyRightScale Webinar: The Five Critical Steps to Develop a Cloud Strategy
RightScale Webinar: The Five Critical Steps to Develop a Cloud StrategyRightScale
 
CCNA PPT
CCNA PPTCCNA PPT
CCNA PPTAIRTEL
 

Destacado (20)

Microsoft Azure & Hybrid Cloud
Microsoft Azure & Hybrid CloudMicrosoft Azure & Hybrid Cloud
Microsoft Azure & Hybrid Cloud
 
Azure Stack - Azure in your own Data Center
Azure Stack - Azure in your own Data CenterAzure Stack - Azure in your own Data Center
Azure Stack - Azure in your own Data Center
 
Choosing Public vs. Private vs. Hybrid Cloud Computing
Choosing Public vs. Private vs. Hybrid Cloud ComputingChoosing Public vs. Private vs. Hybrid Cloud Computing
Choosing Public vs. Private vs. Hybrid Cloud Computing
 
MS Cloud Summit Paris 2017 - Azure Stack
MS Cloud Summit Paris 2017 - Azure StackMS Cloud Summit Paris 2017 - Azure Stack
MS Cloud Summit Paris 2017 - Azure Stack
 
Microsoft Azure Stack
Microsoft Azure StackMicrosoft Azure Stack
Microsoft Azure Stack
 
Microsoft Azure
Microsoft AzureMicrosoft Azure
Microsoft Azure
 
Ubunto Server VPN Implementation
Ubunto Server VPN ImplementationUbunto Server VPN Implementation
Ubunto Server VPN Implementation
 
Vpn ppt
Vpn pptVpn ppt
Vpn ppt
 
Unbreakable SharePoint 2016 with SQL Server 2016 Always On Availability groups
Unbreakable SharePoint 2016 with SQL Server 2016 Always On Availability groupsUnbreakable SharePoint 2016 with SQL Server 2016 Always On Availability groups
Unbreakable SharePoint 2016 with SQL Server 2016 Always On Availability groups
 
FROM ON-PREMISE TO THE HYBRID CLOUD WITH MICROSOFT AZURE
FROM ON-PREMISE TO THE HYBRID CLOUD WITH MICROSOFT AZUREFROM ON-PREMISE TO THE HYBRID CLOUD WITH MICROSOFT AZURE
FROM ON-PREMISE TO THE HYBRID CLOUD WITH MICROSOFT AZURE
 
From on premise to the hybrid cloud with microsoft azure
From on premise to the hybrid cloud with microsoft azureFrom on premise to the hybrid cloud with microsoft azure
From on premise to the hybrid cloud with microsoft azure
 
Azure architecture
Azure architectureAzure architecture
Azure architecture
 
Azure Resource Manager Templates
Azure Resource Manager TemplatesAzure Resource Manager Templates
Azure Resource Manager Templates
 
Windows Azure and the Hybrid Cloud
Windows Azure and the Hybrid CloudWindows Azure and the Hybrid Cloud
Windows Azure and the Hybrid Cloud
 
Building Big data solutions in Azure
Building Big data solutions in AzureBuilding Big data solutions in Azure
Building Big data solutions in Azure
 
Improving Application Security With Azure
Improving Application Security With AzureImproving Application Security With Azure
Improving Application Security With Azure
 
Big data on Azure for Architects
Big data on Azure for ArchitectsBig data on Azure for Architects
Big data on Azure for Architects
 
Architecting azure IaaS Solutions
Architecting azure IaaS SolutionsArchitecting azure IaaS Solutions
Architecting azure IaaS Solutions
 
RightScale Webinar: The Five Critical Steps to Develop a Cloud Strategy
RightScale Webinar: The Five Critical Steps to Develop a Cloud StrategyRightScale Webinar: The Five Critical Steps to Develop a Cloud Strategy
RightScale Webinar: The Five Critical Steps to Develop a Cloud Strategy
 
CCNA PPT
CCNA PPTCCNA PPT
CCNA PPT
 

Similar a Microsoft Azure Hybrid Cloud - Getting Started For Techies

Navigating the turbulence on takeoff: Setting up SharePoint on Azure IaaS the...
Navigating the turbulence on takeoff: Setting up SharePoint on Azure IaaS the...Navigating the turbulence on takeoff: Setting up SharePoint on Azure IaaS the...
Navigating the turbulence on takeoff: Setting up SharePoint on Azure IaaS the...Jason Himmelstein
 
Cloudstack for beginners
Cloudstack for beginnersCloudstack for beginners
Cloudstack for beginnersJoseph Amirani
 
Azure Networking - The First Technical Challenge
Azure Networking  - The First Technical ChallengeAzure Networking  - The First Technical Challenge
Azure Networking - The First Technical ChallengeAidan Finn
 
Tokyo azure meetup #8 azure update, august
Tokyo azure meetup #8   azure update, augustTokyo azure meetup #8   azure update, august
Tokyo azure meetup #8 azure update, augustTokyo Azure Meetup
 
Tokyo azure meetup #8 - Azure Update, August
Tokyo azure meetup #8 - Azure Update, AugustTokyo azure meetup #8 - Azure Update, August
Tokyo azure meetup #8 - Azure Update, AugustKanio Dimitrov
 
Building a Just-in-Time Application Stack for Analysts
Building a Just-in-Time Application Stack for AnalystsBuilding a Just-in-Time Application Stack for Analysts
Building a Just-in-Time Application Stack for AnalystsAvere Systems
 
Trust No-One Architecture For Services And Data
Trust No-One Architecture For Services And DataTrust No-One Architecture For Services And Data
Trust No-One Architecture For Services And DataAidan Finn
 
Hack proof your aws cloud cloudcheckr_040416
Hack proof your aws cloud cloudcheckr_040416Hack proof your aws cloud cloudcheckr_040416
Hack proof your aws cloud cloudcheckr_040416Jarrett Plante
 
Private cloud-webinar
Private cloud-webinarPrivate cloud-webinar
Private cloud-webinarWSO2
 
Hybrid Cloud Tutorial Linkedin 2
Hybrid Cloud Tutorial Linkedin 2Hybrid Cloud Tutorial Linkedin 2
Hybrid Cloud Tutorial Linkedin 2David Rilett
 
Cloud computing & windows azure intro
Cloud computing & windows azure introCloud computing & windows azure intro
Cloud computing & windows azure introHaddy El-Haggan
 
Security in the cloud Workshop HSTC 2014
Security in the cloud Workshop HSTC 2014Security in the cloud Workshop HSTC 2014
Security in the cloud Workshop HSTC 2014Akash Mahajan
 
Deploy, Scale and Manage your Microsoft Investments with AWS
Deploy, Scale and Manage your Microsoft Investments with AWSDeploy, Scale and Manage your Microsoft Investments with AWS
Deploy, Scale and Manage your Microsoft Investments with AWSAmazon Web Services
 
Što danas zamjenjuje Small Business Server?
Što danas zamjenjuje Small Business Server?Što danas zamjenjuje Small Business Server?
Što danas zamjenjuje Small Business Server?Tomislav Lulic
 
Kudu voodoo slideshare
Kudu voodoo   slideshareKudu voodoo   slideshare
Kudu voodoo slideshareAidan Casey
 

Similar a Microsoft Azure Hybrid Cloud - Getting Started For Techies (20)

Navigating the turbulence on takeoff: Setting up SharePoint on Azure IaaS the...
Navigating the turbulence on takeoff: Setting up SharePoint on Azure IaaS the...Navigating the turbulence on takeoff: Setting up SharePoint on Azure IaaS the...
Navigating the turbulence on takeoff: Setting up SharePoint on Azure IaaS the...
 
Cloudstack for beginners
Cloudstack for beginnersCloudstack for beginners
Cloudstack for beginners
 
Azure Networking - The First Technical Challenge
Azure Networking  - The First Technical ChallengeAzure Networking  - The First Technical Challenge
Azure Networking - The First Technical Challenge
 
Tokyo azure meetup #8 azure update, august
Tokyo azure meetup #8   azure update, augustTokyo azure meetup #8   azure update, august
Tokyo azure meetup #8 azure update, august
 
Tokyo azure meetup #8 - Azure Update, August
Tokyo azure meetup #8 - Azure Update, AugustTokyo azure meetup #8 - Azure Update, August
Tokyo azure meetup #8 - Azure Update, August
 
Building a Just-in-Time Application Stack for Analysts
Building a Just-in-Time Application Stack for AnalystsBuilding a Just-in-Time Application Stack for Analysts
Building a Just-in-Time Application Stack for Analysts
 
Trust No-One Architecture For Services And Data
Trust No-One Architecture For Services And DataTrust No-One Architecture For Services And Data
Trust No-One Architecture For Services And Data
 
Azure privatelink
Azure privatelinkAzure privatelink
Azure privatelink
 
Cloud stack for_beginners
Cloud stack for_beginnersCloud stack for_beginners
Cloud stack for_beginners
 
Hack proof your aws cloud cloudcheckr_040416
Hack proof your aws cloud cloudcheckr_040416Hack proof your aws cloud cloudcheckr_040416
Hack proof your aws cloud cloudcheckr_040416
 
IBM Notes in the Cloud
IBM Notes in the CloudIBM Notes in the Cloud
IBM Notes in the Cloud
 
Private cloud-webinar
Private cloud-webinarPrivate cloud-webinar
Private cloud-webinar
 
Hybrid Cloud Tutorial Linkedin 2
Hybrid Cloud Tutorial Linkedin 2Hybrid Cloud Tutorial Linkedin 2
Hybrid Cloud Tutorial Linkedin 2
 
Cloud computing & windows azure intro
Cloud computing & windows azure introCloud computing & windows azure intro
Cloud computing & windows azure intro
 
Security in the cloud Workshop HSTC 2014
Security in the cloud Workshop HSTC 2014Security in the cloud Workshop HSTC 2014
Security in the cloud Workshop HSTC 2014
 
Un-clouding the cloud
Un-clouding the cloudUn-clouding the cloud
Un-clouding the cloud
 
Deploy, Scale and Manage your Microsoft Investments with AWS
Deploy, Scale and Manage your Microsoft Investments with AWSDeploy, Scale and Manage your Microsoft Investments with AWS
Deploy, Scale and Manage your Microsoft Investments with AWS
 
cloudcomputing.pptx
cloudcomputing.pptxcloudcomputing.pptx
cloudcomputing.pptx
 
Što danas zamjenjuje Small Business Server?
Što danas zamjenjuje Small Business Server?Što danas zamjenjuje Small Business Server?
Što danas zamjenjuje Small Business Server?
 
Kudu voodoo slideshare
Kudu voodoo   slideshareKudu voodoo   slideshare
Kudu voodoo slideshare
 

Más de Aidan Finn

Digitally Transform (And Keep) Your On-Premises File Servers
Digitally Transform (And Keep) Your On-Premises File ServersDigitally Transform (And Keep) Your On-Premises File Servers
Digitally Transform (And Keep) Your On-Premises File ServersAidan Finn
 
When Disaster Strikes
When Disaster StrikesWhen Disaster Strikes
When Disaster StrikesAidan Finn
 
End-to-End Azure Site Recovery Solutions for Small-Medium Enterprises
End-to-End Azure Site Recovery Solutions for Small-Medium EnterprisesEnd-to-End Azure Site Recovery Solutions for Small-Medium Enterprises
End-to-End Azure Site Recovery Solutions for Small-Medium EnterprisesAidan Finn
 
Windows Server 2012 R2 Software-Defined Storage
Windows Server 2012 R2 Software-Defined StorageWindows Server 2012 R2 Software-Defined Storage
Windows Server 2012 R2 Software-Defined StorageAidan Finn
 
TechEd North America Speaker Idol Heat Presentation
TechEd North America Speaker Idol Heat PresentationTechEd North America Speaker Idol Heat Presentation
TechEd North America Speaker Idol Heat PresentationAidan Finn
 
What's New in Windows Server 2012 R2
What's New in Windows Server 2012 R2What's New in Windows Server 2012 R2
What's New in Windows Server 2012 R2Aidan Finn
 
E2EVC Copenhagen What’s New With Microsoft Virtualization
E2EVC Copenhagen What’s New With Microsoft VirtualizationE2EVC Copenhagen What’s New With Microsoft Virtualization
E2EVC Copenhagen What’s New With Microsoft VirtualizationAidan Finn
 
Why Upgrade To Windows Server 2012
Why Upgrade To Windows Server 2012Why Upgrade To Windows Server 2012
Why Upgrade To Windows Server 2012Aidan Finn
 
Windows Server 8 Hyper V Networking
Windows Server 8 Hyper V NetworkingWindows Server 8 Hyper V Networking
Windows Server 8 Hyper V NetworkingAidan Finn
 
Top Hyper-V Implementation Issues
Top Hyper-V Implementation IssuesTop Hyper-V Implementation Issues
Top Hyper-V Implementation IssuesAidan Finn
 
Private Cloud Academy: Backup and DPM 2010
Private Cloud Academy: Backup and DPM 2010Private Cloud Academy: Backup and DPM 2010
Private Cloud Academy: Backup and DPM 2010Aidan Finn
 
Private Cloud Academy: Managing Hyper-V
Private Cloud Academy: Managing Hyper-VPrivate Cloud Academy: Managing Hyper-V
Private Cloud Academy: Managing Hyper-VAidan Finn
 
Virtualisation Academy - Private Cloud
Virtualisation Academy - Private CloudVirtualisation Academy - Private Cloud
Virtualisation Academy - Private CloudAidan Finn
 
Hyper-V 2008 R2: What's New Since RTM?
Hyper-V 2008 R2: What's New Since RTM?Hyper-V 2008 R2: What's New Since RTM?
Hyper-V 2008 R2: What's New Since RTM?Aidan Finn
 
Hyper-V 2008 R2 Best Practices
Hyper-V 2008 R2 Best PracticesHyper-V 2008 R2 Best Practices
Hyper-V 2008 R2 Best PracticesAidan Finn
 
Windows Deployment Tools And Methodologies
Windows Deployment Tools And MethodologiesWindows Deployment Tools And Methodologies
Windows Deployment Tools And MethodologiesAidan Finn
 
What's New In 2008 R2 Hyper V and VMM 2008 R2 - Updated Oct 2009
What's New In 2008 R2 Hyper V and VMM 2008 R2 - Updated Oct 2009What's New In 2008 R2 Hyper V and VMM 2008 R2 - Updated Oct 2009
What's New In 2008 R2 Hyper V and VMM 2008 R2 - Updated Oct 2009Aidan Finn
 
Whats New In 2008 R2 Hyper V And Vmm 2008 R2
Whats New In 2008 R2 Hyper V And Vmm 2008 R2Whats New In 2008 R2 Hyper V And Vmm 2008 R2
Whats New In 2008 R2 Hyper V And Vmm 2008 R2Aidan Finn
 
Pub Forum Introducing Hyper V R2
Pub Forum   Introducing Hyper V R2Pub Forum   Introducing Hyper V R2
Pub Forum Introducing Hyper V R2Aidan Finn
 
Wildlife Photography
Wildlife PhotographyWildlife Photography
Wildlife PhotographyAidan Finn
 

Más de Aidan Finn (20)

Digitally Transform (And Keep) Your On-Premises File Servers
Digitally Transform (And Keep) Your On-Premises File ServersDigitally Transform (And Keep) Your On-Premises File Servers
Digitally Transform (And Keep) Your On-Premises File Servers
 
When Disaster Strikes
When Disaster StrikesWhen Disaster Strikes
When Disaster Strikes
 
End-to-End Azure Site Recovery Solutions for Small-Medium Enterprises
End-to-End Azure Site Recovery Solutions for Small-Medium EnterprisesEnd-to-End Azure Site Recovery Solutions for Small-Medium Enterprises
End-to-End Azure Site Recovery Solutions for Small-Medium Enterprises
 
Windows Server 2012 R2 Software-Defined Storage
Windows Server 2012 R2 Software-Defined StorageWindows Server 2012 R2 Software-Defined Storage
Windows Server 2012 R2 Software-Defined Storage
 
TechEd North America Speaker Idol Heat Presentation
TechEd North America Speaker Idol Heat PresentationTechEd North America Speaker Idol Heat Presentation
TechEd North America Speaker Idol Heat Presentation
 
What's New in Windows Server 2012 R2
What's New in Windows Server 2012 R2What's New in Windows Server 2012 R2
What's New in Windows Server 2012 R2
 
E2EVC Copenhagen What’s New With Microsoft Virtualization
E2EVC Copenhagen What’s New With Microsoft VirtualizationE2EVC Copenhagen What’s New With Microsoft Virtualization
E2EVC Copenhagen What’s New With Microsoft Virtualization
 
Why Upgrade To Windows Server 2012
Why Upgrade To Windows Server 2012Why Upgrade To Windows Server 2012
Why Upgrade To Windows Server 2012
 
Windows Server 8 Hyper V Networking
Windows Server 8 Hyper V NetworkingWindows Server 8 Hyper V Networking
Windows Server 8 Hyper V Networking
 
Top Hyper-V Implementation Issues
Top Hyper-V Implementation IssuesTop Hyper-V Implementation Issues
Top Hyper-V Implementation Issues
 
Private Cloud Academy: Backup and DPM 2010
Private Cloud Academy: Backup and DPM 2010Private Cloud Academy: Backup and DPM 2010
Private Cloud Academy: Backup and DPM 2010
 
Private Cloud Academy: Managing Hyper-V
Private Cloud Academy: Managing Hyper-VPrivate Cloud Academy: Managing Hyper-V
Private Cloud Academy: Managing Hyper-V
 
Virtualisation Academy - Private Cloud
Virtualisation Academy - Private CloudVirtualisation Academy - Private Cloud
Virtualisation Academy - Private Cloud
 
Hyper-V 2008 R2: What's New Since RTM?
Hyper-V 2008 R2: What's New Since RTM?Hyper-V 2008 R2: What's New Since RTM?
Hyper-V 2008 R2: What's New Since RTM?
 
Hyper-V 2008 R2 Best Practices
Hyper-V 2008 R2 Best PracticesHyper-V 2008 R2 Best Practices
Hyper-V 2008 R2 Best Practices
 
Windows Deployment Tools And Methodologies
Windows Deployment Tools And MethodologiesWindows Deployment Tools And Methodologies
Windows Deployment Tools And Methodologies
 
What's New In 2008 R2 Hyper V and VMM 2008 R2 - Updated Oct 2009
What's New In 2008 R2 Hyper V and VMM 2008 R2 - Updated Oct 2009What's New In 2008 R2 Hyper V and VMM 2008 R2 - Updated Oct 2009
What's New In 2008 R2 Hyper V and VMM 2008 R2 - Updated Oct 2009
 
Whats New In 2008 R2 Hyper V And Vmm 2008 R2
Whats New In 2008 R2 Hyper V And Vmm 2008 R2Whats New In 2008 R2 Hyper V And Vmm 2008 R2
Whats New In 2008 R2 Hyper V And Vmm 2008 R2
 
Pub Forum Introducing Hyper V R2
Pub Forum   Introducing Hyper V R2Pub Forum   Introducing Hyper V R2
Pub Forum Introducing Hyper V R2
 
Wildlife Photography
Wildlife PhotographyWildlife Photography
Wildlife Photography
 

Último

Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentPim van der Noll
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfpanagenda
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfIngrid Airi González
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...panagenda
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Alkin Tezuysal
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 

Último (20)

Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdf
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 

Microsoft Azure Hybrid Cloud - Getting Started For Techies

  • 1. Hybrid Cloud with Microsoft Azure Aidan Finn
  • 2. About Aidan Finn • Technical Sales Lead at MicroWarehouse • Working in IT since 1996 • MVP (Virtual Machine) • Experienced with Windows Server/Desktop, System Center, virtualisation, and IT infrastructure • @joe_elway • http://www.aidanfinn.com • http://www.petri.co.il/author/aidan-finn • Published author/contributor of several books
  • 3. Agenda • What is cloud computing? • Introducing Microsoft Azure • Azure IaaS – Storage – Virtual networking – Virtual machines – Hybrid cloud networking – Azure Site Recovery – Azure RemoteApp • If we have time … System Center & Azure
  • 4. What is Cloud Computing?
  • 5. What is a cloud? • According to NIST (USA National Institute of Standards and Technology), a cloud’s characteristics are: – On-demand self-service – Broad network access – Resource pooling – Rapid elasticity – Measured service • In other words: – More than just virtualization – “Self-service” indicates large size
  • 6. Cloud Models & Deployments Public Cloud Private Cloud Hybrid Cloud SaaS Bing, Office 365, Outlook.com, Google Apps Salesforce Office 365 PaaS Microsoft Azure, Facebook Pivotal CF IaaS Microsoft Azure, Windows Azure Pack, OpenStack, AWS, Google Compute Engine Windows Azure Pack, OpenStack, vCloud Suite Microsoft “Cloud OS”
  • 7. The Cloud OS Microsoft’s vision of the unified platform for modern business: – Transforms the datacenter – Unlocks insights on any data – Empowers people- centric IT – Enables modern business apps
  • 8. HYBRID Cloud • Microsoft Corporation is selling hybrid cloud – On-premises servers still required – Extend facilities into Azure and hosting partner clouds • Run: – Hyper-V + System Center on premises – Hosting partner: Hyper-V + System Center + WAP – Microsoft Azure
  • 10. Microsoft Azure • Microsoft’s public cloud, offering IaaS and PaaS • Based on … Windows Server 2012 Hyper-V – Rumoured to be 17% of global servers sales – Tell me Hyper-V doesn’t scale!!! – One consistent platform for private, public, and hybrid cloud: Hyper-V virtual machines • Incredibly innovative data centres – Signed NDAs so I’ll leave it there 
  • 11. Cloud Scalability • Only 2 clouds can rival Azure for scale (AWS and Google) • Take what you need, never let IT limit business growth • Place services close to customers … everywhere • Local regions: – Europe North: Dublin – Europe West: Amsterdam
  • 12. “Purchasing” Azure • Think of it as a complicated mobile phone/data service – You take what you need and pay for what you use • Three purchasing methods: – Credit card: monthly bill – Enterprise Agreement: pre-paid credit for large enterprises – Open (from August 1st 2014): pre-paid credit for SMEs • Not easy to forecast – Trials and PoCs are important
  • 13. On To The Fun Stuff … Microsoft Azure IaaS
  • 14. Managing Azure • One portal to manage all aspects of Azure IaaS – https://manage.windowsazure.com • New portal on the way – https://portal.azure.com – Health and subscription information more visible • PowerShell cmdlets – Scripting always gives more control – Some features require PoSH, e.g. static IP address • Microsoft Azure Automation – Orchestration based on WAP Service Management Automation (SMA) – PowerShell workflows
  • 15. Management Certificates • Used by tools such as PowerShell to authenticate with Azure • Create certificate public/private pair – Does not need public trust – Use MakeCert http://msdn.microsoft.com/library/azure/gg551722.aspx • 2 files: – .PFX private file loaded into personal certificate store – .CER public file uploaded to Azure • Install the Azure PowerShell Module – Using the Web Platform Installer http://www.microsoft.com/web/downloads/platform.aspx – Import-Module Azure
  • 18. Microsoft Azure IaaS • Infrastructure services based on: – Web sites > skipping this today due to time and “easy factor” – Storage – Networking – Virtual machines • Solutions based on one or more of those components
  • 19. Fault Domains • Azure is built to cloud scalability • The focus is on service uptime, not server uptime • Imagine a rack that has single: – Power supply – Network connection • Racks are deployed in groups of 3 – One rack can fail/maintenance, others stay online • These are fault domains • A service that lives entirely in a single fault domain will suffer downtime: – Planned maintenance – Unplanned outages (during failover) • Service instances should span multiple fault domains
  • 20. Load-Balanced Sets • Typically deployed when creating multiple instances of an identical web application • For example, the public IP is load balanced on TCP 80 and TCP 443 across multiple web servers • Two objectives: – Increase scalability – Fault tolerance • Internal load balancing (non public tiers) is available now – Only via PowerShell
  • 21. Availability Sets • Virtual machines in the same availability set will reside in different fault domains • Place tiers of a service into availability sets – Example: 3 load balanced VMs – Each VM added to availability set – Each VM is automatically placed in a different fault domain – Host outage/maintenance leaves the service online • Might have availability sets for: – Web tier – Application tier – Data tier • Availability sets required for 99.95% uptime – VM external access
  • 22. Load-Balanced & Availability Sets Rack 1 Rack 2 Rack 3 Public IP Address Availability Set Load-Balanced Set
  • 24. Blobs • Azure stores stuff in blobs – A blob is a multipurpose storage system • We can create blobs to store: – VMs (VHD files only!) – Big data – Templates – Online backup and more • Replicated storage: – Locally redundant (cheapest): 3 copies stored in one region – Geo redundant (default): 3 copies in region + 3 more in neighbouring region – Read-access geo redundant: 3 copies in region + 3 READ ONLY copies in neighbouring region – Zone Redundant Storage (future): 3 copies in one or two regions
  • 25. Demo – Create a Blob
  • 26. Browsing Blobs • Can be done in the portal • Can also use 3rd-party tools to remotely connect to/browse a blob – Similar to an FTP tool – Comparisons: http://blogs.msdn.com/b/windowsazurestorage/archi ve/2014/03/11/windows-azure-storage-explorers- 2014.aspx • Requires: – Storage account name – Primary access key
  • 27. Importing LOTS Of Data To Azure
  • 28. Online Backup • Use Azure blobs for backup – Primary backup: Windows Server Backup (W2008 R2 SP1 and later) – Off-site secondary backup: DPM, Commvault, CA • Create a new Recovery Services > Backup Vault • Install PFX/Private certificate on the server that will be backed up • Upload the paired public CER/public cert to the backup vault • Follow vendor specific instructions to enable backup
  • 29. Demo – Azure Online Backup
  • 30. StorSimple • Tired Storage: – Hot: Local SSD – Warm: Local SAS – Cold: Azure blob • 1 GbE iSCSI appliance – Xyratex (Mexico) • NOT A SAN REPLACEMENT – Use for specific roles – Small working set of data
  • 32. Cloud Service • A high level concept • Has a single public IP address that you can NAT – Known as Virtual IP Address (VIP) – Ports of the VIP are NATed to VMs or load-balancer rules • Think of it this way: – Each isolated service/network should require a cloud service
  • 33. Cloud Service Reserved IP • The VIP is not reserved by default for the cloud service • A VIP remains with a cloud service as long as the cloud service remains operational – Running out of credit will offline a cloud service • You can reserve a VIP – #Reserve a IP New-AzureReservedIP -ReservedIPName EastUSVIP -Label "Reserved VIP in EastUS" -Location "East US" – #Use the Reserved IP during deployment New-AzureVM -ServiceName "MyApp" -VMs $web1 - Location "East US" -VNetName VNetUSEast - ReservedIPName EastUSVIP • Portal management to come in a future release
  • 34. Virtual Networks • Software-defined networking (SDN) – Same concept as Hyper-V Network Virtualization • Carve out your own network and subnets – No need to wait for Azure administrators • Must be in: – 10.0.0.0 – 172.16.0.0 – 192.168.0.0 • Define your own subnet mask and subnets • Example: – Virtual network: 10.0.0.0/16 – Subnet-1: 10.0.0.0/24 – Subnet-2: 10.0.1.0/24 – Subnet-3: 10.0.2.0/24
  • 35. Demo – Creating Virtual Networks
  • 36. Virtual Network IP Addresses • First IP address available is .4 • Default gateway is .1 • Azure VMs can have a single NIC • IP addresses are automatically assigned to VMs – Guest OS will think it has a DHCP address – Not actually DHCP – Not static either • IP remains with a VM while it remains operational – Not guaranteed to return to a VM after being offline – Can cause issues with name/IP relationship • Can use PowerShell to statically assign an IP address
  • 37. Persistent Azure VM IP Addresses Requires some PowerShell: 1. Stop-AzureVM -ServiceName “DemoService” -Name “VM01“ 2. Get-AzureVM -ServiceName “DemoService” - Name “VM01” | Set-AzureStaticVNetIP - IPAddress "10.0.0.4" | Update-AzureVM 3. Start-AzureVM -ServiceName “DemoService" -Name “VM01"
  • 38. Network Isolation • A virtual network is isolated • You choose what, if any, external ports are opened • Virtual subnets inside of a virtual network are able to route to each other • Isolation inside of a virtual network: – Windows Firewall – IPsec • VNet to VNet connectivity – Enable isolated VNets to route to each other – http://msdn.microsoft.com/library/azure/dn690122.as px
  • 40. Connecting Networks • For all but a few services, disconnected services are useless • Extend your on-premises network into Azure • Have private connection to Azure • Extend on-premises management into Azure • Two options: – Site-to-site VPN – ExpressRoute
  • 41. Site-to-Site VPN • Create encrypted tunnel into an Azure virtual network • Routing between sites • Extend your network into Azure • A number of supporting devices, including Watchguard Watchguard XTM Microsoft Azure On-Premise Internet
  • 43. Create a Site-to-Site VPN • WatchGuard instructions: http://customers.watchguard.com/articles/Article /Configure-a-VPN-connection-to-a-Windows- Azure-virtual-network/ • Record: – Local Gateway ID: Your public VPN IP – Remote Gateway ID: Azure public VPN IP – Shared Key: The Azure secret VPN key – Local Network IP Address: The local address space – Remote Network IP Address: The Azure address space
  • 44. Site-to-Site VPN Solution • Can take a little while to come online on the Azure end • You have simultaneous: – Direct Internet access – Site-to-Site VPN routing to Azure Virtual Network • Can extend services into Azure – Active Directory – SQL Always On – And much more
  • 45. Pros/Cons of Site-to-Site VPN • Pros: – Quick to deploy – Very affordable – You are in control • Cons: – Local VPN site is bottleneck – That site is also a point of failure – Can’t implement SLA on VPN because it uses public Internet for the tunnel – It routes only virtual network traffic. What about other Azure services?
  • 46. ExpressRoute • Site-to-Site VPN extends your network into an Azure virtual network • Azure data center services are added to your WAN using ExpressRoute partner – Not just virtual networks – Everything: virtual networks, StorSimple, RDS, backup, replication, … • Two flavours of ExpressRoute that use MPLS WANs • Local service providers: – BT: Network service provider – Telecity: Exchange provider
  • 48. Pros/Cons of Site-to-Site VPN • Pros: – Includes all Azure services – No single point of network failure – No site is a bottleneck for other sites – Is subject to service provider SLA • Cons: – Requires MPLS contract – More expensive than site-to-site VPN – Slower to deploy
  • 50. What Are Azure VMs? • Pretty much like Generation 1 Hyper-V virtual machines – Single virtual NIC – VHD only • Files stored in a blob • Uses a D: drive for non-persistent data – Do not delete or use this drive • Add additional drives for data – Examples: SQL database, AD database files • Can store application data on SMB 2.01 shared folders – Example: IIS shared content • More supported versions of Linux than Windows!!!
  • 51. Deploying Azure VMs? Multiple options: • Deploy VMs from Azure gallery • Create a template in Azure http://azure.microsoft.com/documentation/articles/virtual- machines-capture-image-windows-server/ • Upload a custom template into Azure http://azure.microsoft.com/documentation/articles/virtual- machines-create-upload-vhd-windows-server/ • From vSphere to Azure using MVMC 2.0 http://vniklas.djungeln.se/2014/04/08/using-mvmc-2-0-to- migrate-a-vmware-vm-to-azure-iaas/ • Upload a Hyper-V virtual machine http://michaelwasham.com/2013/01/04/migrate-a-virtual- machine-to-windows-azure-with-powershell/
  • 53. Demo - Deploying an Azure VM
  • 54. • Myth: “Why would I put my applications in the cloud where anyone can get at them?!” – You decide what services are publicly visible – No different to what you do now • We configure Endpoints to NAT ports through the cloud service VIP (public IP address) • Examples: – VIP:TCP80 -> 10.0.0.4:TCP80 – VIP:TCP21 -> 10.0.0.5:TCP21 – VIP:TCP443 -> 10.0.0.6:TCP443 • You can close everything for complete privacy • By default, VMs created in the portal will have these open: – TCP 5986 (PowerShell remote administration) – TCP 3389 (Remote Desktop) Endpoints
  • 55. Demo – Endpoints & Load Balanced Sets
  • 56. • Advanced configuration options: – Change a virtual machine’s specification • Tier: Basic/Standard • Size • Availability set – Monitoring (Preview) • Test a cloud service’s web app from multiple global locations • Monitoring VMs – High level metrics utilization – Between 1 hour and 7 days of data Configuring & Monitoring VMs
  • 57. Demo – Configure & Monitor VMs
  • 58. • Services can have increases/drops in demand • Cloud is elastic – Quickly grow/shrink – Very affordable compared to on-premise capital + operational expenditure • Autoscaling enables you to: – Deploy & configure lots of virtual machines – Add them to an availability set – Turn on/off VMs based on demand – Note: powered off VMs only have a storage cost Autoscaling VMs
  • 59. • Normally VMs use cloud service VIPs and Endpoints to be publicly accessible • Not all services work well with NAT • In preview today, you can reserve a public IP address for a VM – No longer using NAT behind the cloud service VIP – Maybe publish FTP – Monitor publicly accessible VMs via public IP • Only available via PowerShell – Requires new VMs and new virtual networks Instance-Level Public IP Address
  • 61. • Problem: DR/BC is expensive • Partial solution: Hyper-V Replica – Async VM replication built-into all versions of 2012 and later Hyper-V • Problem: DR sites are expensive – Solution: Use Azure Site Recovery (ASR) • Preview starting June 2014 DR-as-a-Service (DRaaS)
  • 62. • ASR is built on Hyper-V Recovery Manager (HRM) • HRM offers orchestration of Hyper-V Replica between two sites – Even two privately owned sites • Problems: – HRM is expensive: €11.92/protected VM/month – Requires SCVMM to be deployed on premises • Licensing too expensive for most SMEs • Consultants failing to deploy/configure SCVMM properly for those who can afford it DR Orchestration
  • 64. • Very similar to WAP Service Management Automation (SMA) • Create runbooks – PowerShell workflows – PowerShell is in everything Microsoft – Tip: Learn PowerShell or hit your career ceiling now • Automate actions in the cloud and on-premises via hybrid cloud • Doing something twice? – Automate it – Time investment up front will pay dividends – The more you do it, the easier it gets Orchestration in the Cloud
  • 66. • Client/Server programs will eventually become web services driven mobile apps • Until then, we need to support traditional desktop apps – For cloud-based services – On cross-platform devices • You can deploy RDS in Azure VMs – Requires RDS SALs through SPLA licensing • Or you can deploy “Mohoro” aka Azure Remote App – A multi-tenant RDS farm in the cloud run by Microsoft – Currently in preview – Clients include Windows, Android, iOS, and Mac OS X RDS In The Cloud
  • 67. One Piece Of Advice
  • 68. • Forget releases every 3 years – Windows Server & System Center out every 12-18 months – vNext expected in April 2015 • With Azure it’s more like every few weeks • Microsoft now doing “sprint development” • Features announced on Azure & ScottGu blogs • Learning has never been as important – Forget traditional learning sources – If you work for a MSFT partner, then watch for news from MicroWarehouse Learning
  • 69. And If We Have Time … System Center
  • 70. • Orchestrator – Add a subscription to the portal – Enable end users to deploy VMs under IT management • Operations Manager – Azure Management Pack: Monitor your Azure subscription – Global Service Monitoring: Monitor web services from Microsoft data centers – System Center Advisor: Additional monitoring from the cloud • Data Protection Manager – Azure Online Backup: Using blobs for secondary storage • Windows Azure Pack – Azure AD authentication via ADFS: Scale-out identity • Configuration Manager – Windows Intune: Cloud-based mobile device/app management – Cloud-based distribution point: Internet-based clients System Center & Microsoft Azure
  • 71. Thank you! Aidan Finn, Hyper-V MVP Technical Sales Lead, MicroWarehouse Ltd. http://www.mwh.ie Twitter: @joe_elway Blog: http://www.aidanfinn.com Petri IT Knowledgebase: http://www.petri.co.il/author/aidan-finn