OK, now we run 'routing' for the nox configurations with loops.

Unfortunately, I can't test this at the moment since nox seems not to
be able to find the routing module.

Added/renamed examples: grid.py, tree1024.py

Added -v flag to nox arguments, so we have some chance of figuring
out why nox is dying, as it generally is.
This commit is contained in:
Bob Lantz
2009-12-14 22:13:53 -08:00
parent c53fa3ba32
commit 77131e8f24
4 changed files with 37 additions and 4 deletions
+4 -4
View File
@@ -9,10 +9,10 @@ from mininet import init, Controller, Network, Host, nameGen, Cli
from mininet import createLink, flush
class NoxController( Controller ):
"A customized Controller that uses NOX."
def __init__( self, name, **kwargs ):
Controller.__init__( self, name,
controller='nox_core', cargs='-i ptcp pyswitch',
def __init__( self, name, kernel=False **kwargs ):
Controller.__init__( self, name, kernel=kernel,
controller='nox_core',
cargs='-v --libdir=/usr/local/lib -i ptcp: routing',
cdir='/usr/local/bin', **kwargs)
class FatTree( Network ):