use of com.cloud.agent.api.to.overviews.NetworkOverviewTO in project cosmic by MissionCriticalCloud.
the class CommandSetupHelper method configureInterfacesAndIps.
private void configureInterfacesAndIps(final VirtualRouter router, final List<Nic> nicsToExclude, final List<Ip> ipsToExclude, final NetworkOverviewTO networkOverviewTO, final List<NetworkOverviewTO.InterfaceTO> interfacesTO, final List<NetworkOverviewTO.ServiceTO.ServiceSourceNatTO> serviceSourceNatsTO) {
final List<NicVO> nics = _nicDao.listByVmId(router.getId());
nics.stream().filter(nic -> !nicsToExclude.contains(nic)).forEach(nic -> {
final NetworkOverviewTO.InterfaceTO interfaceTO = new NetworkOverviewTO.InterfaceTO();
interfaceTO.setMacAddress(nic.getMacAddress());
final List<NetworkOverviewTO.InterfaceTO.IPv4AddressTO> ipv4Addresses = new ArrayList<>();
if (StringUtils.isNotBlank(nic.getIPv4Address()) && StringUtils.isNotBlank(nic.getIPv4Netmask())) {
ipv4Addresses.add(new NetworkOverviewTO.InterfaceTO.IPv4AddressTO(NetUtils.getIpv4AddressWithCidrSize(nic.getIPv4Address(), nic.getIPv4Netmask()), nic.getIPv4Gateway()));
}
final NetworkVO network = _networkDao.findById(nic.getNetworkId());
if (network != null) {
final TrafficType trafficType = network.getTrafficType();
if (TrafficType.Public.equals(trafficType)) {
ipv4Addresses.addAll(_ipAddressDao.listByVpc(router.getVpcId(), false).stream().filter(ipAddressVO -> !ipsToExclude.contains(ipAddressVO.getAddress()) && ipAddressVO.getAssociatedWithNetworkId() != null).map(ipAddressVO -> {
final Ip ip = ipAddressVO.getAddress();
final VlanVO vlanVO = _vlanDao.findById(ipAddressVO.getVlanId());
return new NetworkOverviewTO.InterfaceTO.IPv4AddressTO(NetUtils.getIpv4AddressWithCidrSize(ip.addr(), vlanVO.getVlanNetmask()), nic.getIPv4Gateway());
}).collect(Collectors.toList()));
serviceSourceNatsTO.addAll(_ipAddressDao.listByVpc(router.getVpcId(), true).stream().map(IPAddressVO::getAddress).filter(ip -> !ipsToExclude.contains(ip)).map(Ip::addr).map(ip -> new NetworkOverviewTO.ServiceTO.ServiceSourceNatTO(ip, nic.getIPv4Gateway())).collect(Collectors.toList()));
}
interfaceTO.setMetadata(new NetworkOverviewTO.InterfaceTO.MetadataTO(network));
}
interfaceTO.setIpv4Addresses(ipv4Addresses.toArray(new NetworkOverviewTO.InterfaceTO.IPv4AddressTO[ipv4Addresses.size()]));
interfacesTO.add(interfaceTO);
});
networkOverviewTO.setInterfaces(interfacesTO.toArray(new NetworkOverviewTO.InterfaceTO[interfacesTO.size()]));
}
use of com.cloud.agent.api.to.overviews.NetworkOverviewTO in project cosmic by MissionCriticalCloud.
the class CommandSetupHelper method configureSyslog.
private void configureSyslog(final VirtualRouter router, final NetworkOverviewTO networkOverviewTO) {
final Vpc vpc = _vpcDao.findById(router.getVpcId());
if (StringUtils.isNotBlank(vpc.getSyslogServerList())) {
final NetworkOverviewTO.SyslogTO syslogTO = new NetworkOverviewTO.SyslogTO();
syslogTO.setServers(vpc.getSyslogServerList().split(","));
networkOverviewTO.setSyslog(syslogTO);
}
}
use of com.cloud.agent.api.to.overviews.NetworkOverviewTO in project cosmic by MissionCriticalCloud.
the class VpcVirtualNetworkApplianceManagerImpl method setupVpcPrivateNetwork.
/**
* @param router
* @param add
* @param privateNic
* @return
* @throws ResourceUnavailableException
*/
protected boolean setupVpcPrivateNetwork(final VirtualRouter router, final boolean add, final NicProfile privateNic) throws ResourceUnavailableException {
if (router.getState() == State.Running) {
final PrivateIpVO ipVO = _privateIpDao.findByIpAndSourceNetworkId(privateNic.getNetworkId(), privateNic.getIPv4Address());
final Network network = _networkDao.findById(privateNic.getNetworkId());
final String netmask = NetUtils.getCidrNetmask(network.getCidr());
String broadcastUri = "";
if (network.getBroadcastUri() != null) {
broadcastUri = network.getBroadcastUri().toString();
}
final PrivateIpAddress ip = new PrivateIpAddress(ipVO, broadcastUri, network.getGateway(), netmask, privateNic.getMacAddress());
final Commands cmds = new Commands(Command.OnError.Stop);
final List<Ip> ipsToExclude = new ArrayList<>();
if (!add) {
ipsToExclude.add(new Ip(ip.getIpAddress()));
}
final NetworkOverviewTO networkOverview = _commandSetupHelper.createNetworkOverviewFromRouter(router, new ArrayList<>(), ipsToExclude, new ArrayList<>(), null, null);
final UpdateNetworkOverviewCommand updateNetworkOverviewCommand = _commandSetupHelper.createUpdateNetworkOverviewCommand(router, networkOverview);
cmds.addCommand(updateNetworkOverviewCommand);
try {
if (_nwHelper.sendCommandsToRouter(router, cmds)) {
s_logger.debug("Successfully applied ip association for ip " + ip + " in vpc network " + network);
return true;
} else {
s_logger.warn("Failed to associate ip address " + ip + " in vpc network " + network);
return false;
}
} catch (final Exception ex) {
s_logger.warn("Failed to send " + (add ? "add " : "delete ") + " private network " + network + " commands to rotuer ");
return false;
}
} else if (router.getState() == State.Stopped || router.getState() == State.Stopping) {
s_logger.debug("Router " + router.getInstanceName() + " is in " + router.getState() + ", so not sending setup private network command to the backend");
} else {
s_logger.warn("Unable to setup private gateway, virtual router " + router + " is not in the right state " + router.getState());
throw new ResourceUnavailableException("Unable to setup Private gateway on the backend," + " virtual router " + router + " is not in the right state", DataCenter.class, router.getDataCenterId());
}
return true;
}
use of com.cloud.agent.api.to.overviews.NetworkOverviewTO in project cosmic by MissionCriticalCloud.
the class VpcVirtualNetworkApplianceManagerImpl method stopRemoteAccessVpn.
@Override
public boolean stopRemoteAccessVpn(final RemoteAccessVpn vpn, final VirtualRouter router) throws ResourceUnavailableException {
if (router.getState() == State.Running) {
final Commands cmds = new Commands(Command.OnError.Continue);
final NetworkOverviewTO networkOverview = _commandSetupHelper.createNetworkOverviewFromRouter(router, new ArrayList<>(), new ArrayList<>(), new ArrayList<>(), vpn, null);
final UpdateNetworkOverviewCommand updateNetworkOverviewCommand = _commandSetupHelper.createUpdateNetworkOverviewCommand(router, networkOverview);
cmds.addCommand(updateNetworkOverviewCommand);
try {
return _nwHelper.sendCommandsToRouter(router, cmds);
} catch (final Exception ex) {
return false;
}
} else if (router.getState() == State.Stopped) {
s_logger.debug("Router " + router + " is in Stopped state, not sending deleteRemoteAccessVpn command to it");
} else {
s_logger.warn("Failed to delete remote access VPN: domR " + router + " is not in right state " + router.getState());
throw new ResourceUnavailableException("Failed to delete remote access VPN: domR is not in right state " + router.getState(), DataCenter.class, router.getDataCenterId());
}
return true;
}
use of com.cloud.agent.api.to.overviews.NetworkOverviewTO in project cosmic by MissionCriticalCloud.
the class VpcVirtualNetworkApplianceManagerImpl method updateVR.
@Override
public boolean updateVR(final Vpc vpc, final DomainRouterVO router) {
Commands commands = new Commands(Command.OnError.Stop);
final NetworkOverviewTO networkOverview = _commandSetupHelper.createNetworkOverviewFromRouter(router, new ArrayList<>(), new ArrayList<>(), new ArrayList<>(), null, null);
final UpdateNetworkOverviewCommand updateNetworkOverviewCommand = _commandSetupHelper.createUpdateNetworkOverviewCommand(router, networkOverview);
commands.addCommand(updateNetworkOverviewCommand);
_commandSetupHelper.createVRConfigCommands(vpc, router, commands);
try {
if (_nwHelper.sendCommandsToRouter(router, commands)) {
s_logger.debug("Successfully applied source NAT list on the vpc " + router.getHostName());
return true;
} else {
s_logger.warn("Failed to apply source NAT list on vpc " + router.getHostName());
return false;
}
} catch (final Exception ex) {
s_logger.warn("Failed to send config update to router " + router.getHostName());
return false;
}
}
Aggregations