package org.opennaas.extensions.network.capability.ospf; import org.opennaas.core.resources.capability.CapabilityException; import org.opennaas.core.resources.capability.ICapability; import org.opennaas.core.resources.command.Response; public interface INetOSPFService extends ICapability { /** * Enable OSPF on the network. * * 1) Configures OSPF in all routers of the network. </b> 2) Configures a backbone area in them. </b> 3) Add all interfaces on this routers to * this area </b> 4) Enables OSPF in all routers </b> * * @return * @throws CapabilityException */ public Response activateOSPF() throws CapabilityException; }