mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-8759 - Fix guets nic allocation
- When stopping/detroying a VPC router and creating a new one via the addition os a VM, the networks are no plugged correctly - The ETH1 ends up with the IP of the guest nic, which remains down. This causes routes problems and the VMs are not reachable via the pub IPs
This commit is contained in:
parent
23d0f3feda
commit
53c9bb4d38
|
|
@ -623,12 +623,7 @@ public class NetworkHelperImpl implements NetworkHelper {
|
|||
|
||||
networks.put(controlConfig, new ArrayList<NicProfile>());
|
||||
|
||||
// 2) Guest Network
|
||||
final LinkedHashMap<Network, List<? extends NicProfile>> guestNic = configureGuestNic(routerDeploymentDefinition);
|
||||
// The guest nic has to be added after the Control Nic.
|
||||
networks.putAll(guestNic);
|
||||
|
||||
// 3) Public network
|
||||
// 2) Public network
|
||||
if (routerDeploymentDefinition.isPublicNetwork()) {
|
||||
s_logger.debug("Adding nic for Virtual Router in Public network ");
|
||||
// if source nat service is supported by the network, get the source
|
||||
|
|
@ -651,10 +646,7 @@ public class NetworkHelperImpl implements NetworkHelper {
|
|||
defaultNic.setBroadcastUri(BroadcastDomainType.Vlan.toUri(sourceNatIp.getVlanTag()));
|
||||
defaultNic.setIsolationUri(IsolationType.Vlan.toUri(sourceNatIp.getVlanTag()));
|
||||
}
|
||||
//If guest nic has already been addedd we will have 2 devices in the list.
|
||||
if (networks.size() > 1) {
|
||||
defaultNic.setDeviceId(2);
|
||||
}
|
||||
|
||||
final NetworkOffering publicOffering = _networkModel.getSystemAccountNetworkOfferings(NetworkOffering.SystemPublicNetwork).get(0);
|
||||
final List<? extends Network> publicNetworks = _networkMgr.setupNetwork(s_systemAccount, publicOffering, routerDeploymentDefinition.getPlan(), null, null, false);
|
||||
final String publicIp = defaultNic.getIPv4Address();
|
||||
|
|
@ -668,6 +660,11 @@ public class NetworkHelperImpl implements NetworkHelper {
|
|||
networks.put(publicNetworks.get(0), new ArrayList<NicProfile>(Arrays.asList(defaultNic)));
|
||||
}
|
||||
|
||||
// 3) Guest Network
|
||||
final LinkedHashMap<Network, List<? extends NicProfile>> guestNic = configureGuestNic(routerDeploymentDefinition);
|
||||
// The guest nic has to be added after the Control and Public nics.
|
||||
networks.putAll(guestNic);
|
||||
|
||||
return networks;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue