This is an archive version of the document. To get the most up-to-date information, see the current version.

New-VBRViReplicaReIpRule

Short Description

Creates a new VMware replica re-IP rule.

Applies to

Platform: VMware

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

Syntax

New-VBRViReplicaReIpRule [-SourceIp <String>] [-SourceMask <String>] [-TargetIp <String>] [-TargetMask <String>] -TargetGateway <String> [-DNS <String[]>] [-WINS <String[]>] [-Description <String>] [-WarningAction <ActionPreference>] [-WarningVariable <String>] [<CommonParameters>]

Detailed Description

This cmdlet creates a VBRViReplicaReIpRule object containing a list of rules for different IP addressing scheme. Use this object to set re-IP rules for replication jobs.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

SourceIp

Specifies the IP address or the IP addressing scheme of the network in which the source VM is located. You can use the asterisk character (*) to specify a range of IP addresses.

Default: 172.16.*.*.

False

Named

False

False

SourceMask

Specifies the mask of the network in which the source VM is located. You can use the asterisk character (*) to specify a range of IP addresses.

Default: 255.255.0.0.

False

Named

False

False

TargetIp

Specifies the IP address or the IP addressing scheme of the network in which the replica VM will be located. You can use the asterisk character (*) to specify a range of IP addresses.

Default: 172.17.*.*.

False

Named

False

False

TargetMask

Specifies the mask of the network in which the replica VM will be located. You can use the asterisk character (*) to specify a range of IP addresses.

Default: 255.255.0.0.

False

Named

False

False

TargetGateway

Specifies the gateway address of the network in which the replica VM will be located.

True

Named

False

False

DNS

Specifies the DNS server address.

False

Named

False

False

WINS

Specifies the WINS server address.

False

Named

False

False

Description

Specifies the description of the re-IP rule.

False

Named

False

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Return Type

VBRViReplicaReIpRule

Example

This command generates a new re-IP rule. Save it to the $reiprule variable for future needs.

$reiprule = New-VBRViReplicaReIpRule -SourceIp 172.16.*.* -SourceMask 255.255.0.0 -TargetIp 172.17.*.* -TargetMask 255.255.0.0 -TargetGateway 172.17.0.1