You isolate the network traffic to the vSphere Replication server by creating a dedicated port group for vSphere Replication traffic.
For the protected VMware Cloud Foundation instance procedure, use the VMware Cloud Foundation Planning and Preparation Workbook.
UI Procedure
- Log in to the management domain vCenter Server at https://<vcenter_server_fqdn>/ui in the protected VMware Cloud Foundation instance as administrator@vsphere.local.
- Create a port group in the distributed switch for the vSphere Replication traffic.
- In the Networking inventory, navigate to the management virtual distributed switch.
- Right-click the management virtual distributed switch and select .
- On the Name and location page, enter a name and click Next.
- On the Configure settings page, configure the following settings, configure the remaining settings according to your VMware Cloud Foundation Planning and Preparation Workbook, and click Next.
Setting Value Port binding Static Port allocation Elastic Number of ports 8 VLAN type VLAN Customize default policies configuration Selected - On the Security page, click Next.
- On the Traffic shaping page, click Next.
- On the Teaming and failover page, from the Load balancing drop-down menu, select Route based on physical NIC load, and click Next.
- On the Monitoring page, click Next.
- On the Miscellaneous page, click Next.
- On the Ready to complete page, click Finish.
- Repeat the procedure to create the dedicated replication traffic port group on the distributed switch in the recovery VMware Cloud Foundation instance by using the corresponding values from your VMware Cloud Foundation Planning and Preparation Workbook for the Recovery Instance.
PowerShell Procedure
-
Start Windows PowerShell.
-
Replace the values in the sample code with values from your VMware Cloud Foundation Planning and Preparation Workbook and run the commands in the PowerShell console.
$sddcManagerFqdn = "sfo-vcf01.sfo.rainpole.io" $sddcManagerUser = "administrator@vsphere.local" $sddcManagerPass = "VMw@re1!" $sddcDomain = "sfo-m01" $replicationPortgroup = "sfo-m01-cl01-vds01-pg-vrms" $replicationVlan = 2715
-
Perform the configuration by running the command in the PowerShell console.
Add-VdsPortGroup -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -domain $sddcDomain -portgroup $replicationPortgroup -vlan $replicationVlan
- Repeat the procedure to create the dedicated replication traffic port group on the distributed switch in the recovery VMware Cloud Foundation instance by using the corresponding values from your VMware Cloud Foundation Planning and Preparation Workbook for the Recovery Instance.