Remove/merge obsolete examples

This commit is contained in:
Brandon Heller
2010-01-02 10:55:46 -08:00
parent 8f20b95d56
commit 83086439cc
9 changed files with 19 additions and 125 deletions
-15
View File
@@ -1,15 +0,0 @@
#!/usr/bin/python
"""
Create a 1024-host network, and run the CLI on it.
If this fails because of kernel limits, you may have
to adjust them, e.g. by adding entries to /etc/sysctl.conf
and running sysctl -p.
"""
from mininet.mininet import init, TreeNet, Cli
if __name__ == '__main__':
init()
network = TreeNet( depth=2, fanout=32, kernel=True )
network.run( Cli )