Skip to content

Commit 65dd555

Browse files
author
Ankita Dutta
committed
Resolve comments
1 parent f79740d commit 65dd555

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/site-recovery/azure-to-azure-tutorial-enable-replication-shared-disk.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ To prepare the vault for replication, follow these steps:
8888

8989
A cache storage account is a standard storage account in the same Azure region as the virtual machine being replicated. The cache storage account is used to hold replication changes temporarily, before the changes are moved to the recovery Azure region. High churn support is also available in Azure Site Recovery to get higher churn limits. To use this feature, create a *Premium Block Blob* type of storage accounts and then use it as the cache storage account.
9090

91-
You can choose to, but it's not necessary, to specify different cache storage accounts for the different disks of a virtual machine. If you use different cache storage accounts, ensure they are of the same type (Standard or Premium Block Blobs). For more information, see [Azure VM Disaster Recovery - High Churn Support](./concepts-azure-to-azure-high-churn-support.md).
91+
You can choose to, but it's not necessary to specify different cache storage accounts for the different disks of a virtual machine. If you use different cache storage accounts, ensure that they are of the same type (Standard or Premium Block Blobs). For more information, see [Azure VM Disaster Recovery - High Churn Support](./concepts-azure-to-azure-high-churn-support.md).
9292

9393
```powershell
9494
#Create Cache storage account for replication logs in the primary region
@@ -104,7 +104,7 @@ $WestUSTargetStorageAccount = New-AzStorageAccount -Name "a2atargetstorage" -Res
104104

105105
## Create network mappings
106106

107-
A network mapping maps virtual networks in the primary region to virtual networks in the recovery region. The network mapping specifies the Azure virtual network in the recovery region, that a virtual machine in the primary virtual network should fail over to. One Azure virtual network can be mapped to only a single Azure virtual network in a recovery region.
107+
A network mapping maps virtual networks in the primary region to virtual networks in the recovery region. The network mapping specifies the Azure virtual network in the recovery region that a virtual machine in the primary virtual network should fail over to. One Azure virtual network can be mapped to only a single Azure virtual network in a recovery region.
108108

109109
To create a network mapping, do the following:
110110

@@ -117,7 +117,7 @@ To create a network mapping, do the following:
117117
$WestUSRecoveryNetwork = $WestUSRecoveryVnet.Id
118118
```
119119

120-
1. Retrieve the primary virtual network. The VNet that the virtual machine is connected to:
120+
1. Retrieve the primary virtual network that the virtual machine is connected as follows:
121121

122122
```powershell
123123
#Retrieve the virtual network that the virtual machine is connected to
@@ -141,7 +141,7 @@ To create a network mapping, do the following:
141141
$EastUSPrimaryNetwork = (Split-Path(Split-Path($PrimarySubnet.Id))).Replace("\","/")
142142
```
143143

144-
1. Create network mapping between the primary virtual network and the recovery virtual network:
144+
1. Create a network mapping between the primary virtual network and the recovery virtual network:
145145

146146
```powershell
147147
#Create an ASR network mapping between the primary Azure virtual network and the recovery Azure virtual network
@@ -157,7 +157,7 @@ To create a network mapping, do the following:
157157
Write-Output $TempASRJob.State
158158
```
159159

160-
1. Create network mapping for the reverse direction (fail back):
160+
1. Create a network mapping for the reverse direction (fail back):
161161

162162
```powershell
163163
#Create an ASR network mapping for fail back between the recovery Azure virtual network and the primary Azure virtual network
@@ -197,7 +197,7 @@ $EnableJob1 = New-AzRecoveryServicesAsrReplicationProtectedItem -AzureToAzure -N
197197
-RecoveryProximityPlacementGroupId $ppg -RecoveryAzureNetworkId $networkId -LogStorageAccountId $storageId
198198
```
199199

200-
Replicate the Azure virtual machines with managed shared disks when disk details are available. To replicate the Azure virtual machines with managed shared disks, do the following:
200+
Replicate the Azure virtual machines with managed shared disks when disk details are available, as follows:
201201

202202
```powershell
203203
$disk1 = New-AzRecoveryServicesAsrAzureToAzureDiskReplicationConfig -ManagedDisk -LogStorageAccountId $storageId `
@@ -288,7 +288,7 @@ Start-AzRecoveryServicesAsrClusterTestFailoverCleanupJob -ReplicationProtectionC
288288

289289
## Failover
290290

291-
Fail over the cluster to a specific recovery point. To failover, do the following:
291+
Fail over the cluster to a specific recovery point, as follows:
292292

293293
```powershell
294294
$rpi1 = Get-ASRReplicationProtectedItem -ProtectionContainer $protectionContainer -FriendlyName "sdgql1"

0 commit comments

Comments
 (0)