454ac02886
Signed-off-by: Benjamin Hesmans <benjamin.hesmans@uclouvain.be>
37 lines
761 B
Python
37 lines
761 B
Python
from mininet.topo import Topo
|
|
from mininet.net import Mininet
|
|
from mininet.link import TCLink
|
|
from mininet.cli import CLI
|
|
|
|
class MpMininetBuilder(Topo):
|
|
def __init__(self):
|
|
Topo.__init__( self )
|
|
self.net = None
|
|
|
|
def commandTo(self, who, cmd):
|
|
who.cmd(cmd)
|
|
|
|
def startNetwork(self):
|
|
self.net = Mininet(topo=self,link=TCLink)
|
|
self.net.start()
|
|
|
|
def getCLI(self):
|
|
if self.net is None:
|
|
print("Can not get the CLI")
|
|
else:
|
|
CLI(self.net)
|
|
|
|
def getHost(self, who):
|
|
if self.net is None:
|
|
print("Network not available....")
|
|
raise Exception("Network not ready");
|
|
else:
|
|
return self.net.getNodeByName(who)
|
|
|
|
def stopNetwork(self):
|
|
if self.net is None:
|
|
print("Could not stop network... Nothing to stop)")
|
|
else:
|
|
self.net.stop()
|
|
|