mirror of https://github.com/apache/cloudstack.git
Bug 11593 - CIDR conflicts with zone when extending pod but not when creating it
Changes: - Now we validate Pod's CIDR only against other Pod's CIDR. No need to validate against guest CIDR and public vlan CIDR.
This commit is contained in:
parent
3769a2f9ec
commit
1e675f45ba
|
|
@ -702,7 +702,10 @@ public class ConfigurationManagerImpl implements ConfigurationManager, Configura
|
|||
String checkPodCIDRs = _configDao.getValue("check.pod.cidrs");
|
||||
if (checkPodCIDRs == null || checkPodCIDRs.trim().isEmpty() || Boolean.parseBoolean(checkPodCIDRs)) {
|
||||
checkPodCidrSubnets(zoneId, podId, cidr);
|
||||
checkCidrVlanOverlap(zoneId, cidr);
|
||||
/* Commenting out due to Bug 11593 - CIDR conflicts with zone when extending pod but not when creating it
|
||||
*
|
||||
* checkCidrVlanOverlap(zoneId, cidr);
|
||||
*/
|
||||
}
|
||||
|
||||
Grouping.AllocationState allocationState = null;
|
||||
|
|
|
|||
Loading…
Reference in New Issue