allow overlapped subnet in shared network

This commit is contained in:
Anthony Xu 2013-08-16 10:02:45 -07:00
parent a21ec81db9
commit 524e73c63e
1 changed files with 0 additions and 6 deletions

View File

@ -3134,12 +3134,6 @@ public class ConfigurationManagerImpl extends ManagerBase implements Configurati
}
}
if ( vlan.getNetworkId() != networkId) {
throw new InvalidParameterValueException("This subnet is overlapped with subnet in other network " + vlan.getNetworkId()
+ " in zone " + zone.getName()
+ " . Please specify a different gateway/netmask.");
}
String[] otherVlanIpRange = vlan.getIpRange().split("\\-");
String otherVlanStartIP = otherVlanIpRange[0];
String otherVlanEndIP = null;