Posted On March 31, 2019

Amazon Web Services (AWS) Disaster Recovery

kimconnect 0 comments
blog.KimConnect.com >> Virtualization >> Amazon Web Services (AWS) Disaster Recovery
Features:
1. Multi-regions: compliance with Section 404 of COBIT requirements
2. Amazon S3 with redundancy, versioning, multi-factor authentication, bucket policies, Identity Access Management (IAM)
3. Amazon Glacier for archiving ($0.01/GB per month)
4. Amazon Elastic Blockstore (Amazon EBS): snapshots
5. AWS Import/Export: bypass Internet and only use Amazon’s local network to save bandwidth costs
6. AWS Storage Gateway: connection to on-premise backup solutions (cached volumes, stored volumes, and virtual tape library) that can operate as iSCCI interfaces
7. Amazon Route 53: scalable DNS
8. Elastic Load Balancing: automatically route incoming streams of application traffic
9. Amazon Virtual Private Cloud: VPN between local and Amazon
10. Amazon Direct Connect

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Remove ‘Ghost’ VMs with Status ‘Off-Critical’ or ‘Saved-Critical’

Issue: Resolution: get-vm|?{$_.State -in @('OffCritical','SavedCritical')}|remove-vm -force

Install ESX 5.5 on 5th Generation NUC

Download the following:- ESX 5.5 ISO- ESXi-Customizer v2.7.2 - net-e1000e-3.1.0.2-glr-offline_bundle.zip (https://vibsdepot.v-front.de/wiki/index.php/Net-e1000e)- uNetbootinFollow these steps:- Edit…

PowerShell: Get All Hyper-V Host Spectre Patch Versions

# getAllVmSpectrePatchVersions.ps1 function getHyperVHostsInForest{ function includeRSAT{ $ErrorActionPreference='stop' [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 #$rsatWindows7x32='https://download.microsoft.com/download/4/F/7/4F71806A-1C56-4EF2-9B4F-9870C4CFD2EE/Windows6.1-KB958830-x86-RefreshPkg.msu' $rsatWindows7x64='https://download.microsoft.com/download/4/F/7/4F71806A-1C56-4EF2-9B4F-9870C4CFD2EE/Windows6.1-KB958830-x64-RefreshPkg.msu' $rsatWindows81='https://download.microsoft.com/download/1/8/E/18EA4843-C596-4542-9236-DE46F780806E/Windows8.1-KB2693643-x64.msu' $rsat1709 =…