Skip to content
Snippets Groups Projects
Commit aacf7c46 authored by Brian O'Connor's avatar Brian O'Connor
Browse files

fixing controllers.py to use api

parent 3a35480c
No related branches found
No related tags found
No related merge requests found
......@@ -15,8 +15,8 @@
# Two local and one "external" controller (which is actually c0)
# Ignore the warning message that the remote isn't (yet) running
c0 = Controller( 'c0' )
c1 = Controller( 'c1' )
c0 = Controller( 'c0', port=6633 )
c1 = Controller( 'c1', port=6634 )
c2 = RemoteController( 'c2', ip='127.0.0.1' )
cmap = { 's1': c0, 's2': c1, 's3': c2 }
......@@ -28,7 +28,9 @@ def start( self, controllers ):
topo = TreeTopo( depth=2, fanout=2 )
net = Mininet( topo=topo, switch=MultiSwitch, build=False )
net.controllers = [ c0, c1 ]
for c in [ c0, c1 ]:
net.addController(c)
net.build()
net.start()
CLI( net )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment