Skip to content
Snippets Groups Projects
cli.py 229 B
Newer Older
Bob Lantz's avatar
Bob Lantz committed
#!/usr/bin/python

"Create a tree network and run the CLI on it."
Bob Lantz's avatar
Bob Lantz committed

from mininet.mininet import init, TreeNet, Cli
Bob Lantz's avatar
Bob Lantz committed

if __name__ == '__main__':
   init()
   network = TreeNet( depth=2, fanout=4, kernel=True )
   network.run( Cli )