af8f0b61b6
More tweaks for examples, which are still in progress.
11 lines
221 B
Python
Executable File
11 lines
221 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
"Create a tree network and run the CLI on it."
|
|
|
|
from mininet import init, TreeNet, Cli
|
|
|
|
if __name__ == '__main__':
|
|
init()
|
|
network = TreeNet( depth=2, fanout=4, kernel=True )
|
|
network.run( Cli )
|