Get-VBRHvReplicaReIpRule

Short Description

Returns Hyper-V job re-IP rules.

Applies to

Platform: Hyper-V

Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

Get-VBRHvReplicaReIpRule -Job <CBackupJob>  [<CommonParameters>]

Detailed Description

This cmdlet returns the list of re-IP rules configured for a selected Hyper-V 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,
ByProperty
Name)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

VBRHvReplicaReIpRule

Examples

Getting Re-IP Rules for Replication Job

This command looks for the re-IP rules set for a replication job.

$job = Get-VBRJob -Name "Backup Copy Job 1"

Get-VBRHvReplicaReIpRule -Job $job

Perform the following steps:

  1. Run the Get-VBRJob cmdlet. Save the result to the $job variable.
  2. Run the Get-VBRHvReplicaReIpRule cmdlet. Set the $job variable as the Job parameter value.

Related Commands

Get-VBRJob