Added INSTALL file incorporating Brandon's suggestions.

More tweaks for examples, which are still in progress.
This commit is contained in:
Bob Lantz
2009-12-11 03:22:09 -08:00
parent 42ba5d92c3
commit af8f0b61b6
5 changed files with 98 additions and 20 deletions
+3 -7
View File
@@ -1,14 +1,10 @@
#!/usr/bin/python
"""Create a tree network and run the CLI on it."""
"Create a tree network and run the CLI on it."
from mininet import init, TreeNet, Cli
def treeInteract():
network = TreeNet( depth=2, fanout=4, kernel=True )
network.run( Cli )
if __name__ == '__main__':
init()
treeInteract()
network = TreeNet( depth=2, fanout=4, kernel=True )
network.run( Cli )