When trying to create a new VsphereReplica job, the reIp option throws the following error "Details: Cannot add multiple ReIP rules with the same source: source IP: 10.1.2.3, source subnet mask: 255.255.255.0.", although my rules have different source Ip Addresses. Both of the rules work if they are the only rule. And it seems they work together with the powershell module.
Code: Select all
"reIp": {
"rules": [
{
"ruleType": "IPv4",
"description": "",
"ipv4": {
"sourceIPAddress": "10.1.2.3",
"sourceSubnetMask": "255.255.255.0",
"targetIPAddress": "10.3.2.1",
"targetSubnetMask": "255.255.255.0",
"targetDefaultGateway": "10.3.2.10"
}
},
{
"ruleType": "IPv4",
"description": "",
"ipv4": {
"sourceIPAddress": "10.0.40.45",
"sourceSubnetMask": "255.255.255.0",
"targetIPAddress": "10.1.40.80",
"targetSubnetMask": "255.255.255.0",
"targetDefaultGateway": "10.1.40.90"
}
}
]
}