Get-VBRViReplicaReIpRule
Short Description
Returns VMware job re-IP rules.
Applies to
Platform: VMware
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Get-VBRViReplicaReIpRule -Job <CBackupJob> [-WarningAction <ActionPreference>] [-WarningVariable <String>] [<CommonParameters>] |
Detailed Description
This cmdlet returns the list of re-IP rules configured for a selected VMware replication job.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
Job | Specifies the replication job for which you want to get the list of the re-IP rules. | Accepts the CBackupJob object. To get this object, run the Get-VBRJob cmdlet. | True | Named | True (ByValue, |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
Examples
Getting Re-IP Rules for Replication Job
This example gets re-IP rules set for a replication job.
$job = Get-VBRJob -Name "Backup Copy Job" Get-VBRViReplicaReIpRule -Job $job |
Perform the following steps:
- Run the Get-VBRJob cmdlet. Save the result to the $job variable.
- Run the Get-VBRViReplicaReIpRule cmdlet. Set the $job variable as the Job parameter value.
Related Commands