Revision 96952b92
INSTALL | ||
---|---|---|
2 | 2 |
Mininet Installation/Configuration Notes |
3 | 3 |
---------------------------------------- |
4 | 4 |
|
5 |
Mininet 2.1.0 |
|
5 |
Mininet 2.1.0+
|
|
6 | 6 |
--- |
7 | 7 |
|
8 | 8 |
The supported installation methods for Mininet are 1) using a |
LICENSE | ||
---|---|---|
1 |
Mininet 2.1.0 License |
|
1 |
Mininet 2.1.0+ License
|
|
2 | 2 |
|
3 | 3 |
Copyright (c) 2013 Open Networking Laboratory |
4 | 4 |
Copyright (c) 2009-2012 Bob Lantz and The Board of Trustees of |
README.md | ||
---|---|---|
3 | 3 |
|
4 | 4 |
*The best way to emulate almost any network on your laptop!* |
5 | 5 |
|
6 |
Version 2.1.0 |
|
6 |
Version 2.1.0+
|
|
7 | 7 |
|
8 | 8 |
### What is Mininet? |
9 | 9 |
|
... | ... | |
66 | 66 |
|
67 | 67 |
`mn -c` |
68 | 68 |
|
69 |
### New features in 2.1.0 |
|
69 |
### New features in 2.1.0+
|
|
70 | 70 |
|
71 |
Mininet 2.1.0 provides a number of bug fixes as well as |
|
71 |
Mininet 2.1.0+ provides a number of bug fixes as well as
|
|
72 | 72 |
several new features, including: |
73 | 73 |
|
74 | 74 |
* Convenient access to `Mininet()` as a dict of nodes |
... | ... | |
127 | 127 |
|
128 | 128 |
### Credits |
129 | 129 |
|
130 |
The Mininet 2.1.0 Team: |
|
130 |
The Mininet 2.1.0+ Team:
|
|
131 | 131 |
|
132 | 132 |
* Bob Lantz |
133 | 133 |
* Brian O'Connor |
mininet/net.py | ||
---|---|---|
102 | 102 |
from mininet.term import cleanUpScreens, makeTerms |
103 | 103 |
|
104 | 104 |
# Mininet version: should be consistent with README and LICENSE |
105 |
VERSION = "2.1.0" |
|
105 |
VERSION = "2.1.0+"
|
|
106 | 106 |
|
107 | 107 |
class Mininet( object ): |
108 | 108 |
"Network emulation with hosts spawned in network namespaces." |
util/versioncheck.py | ||
---|---|---|
8 | 8 |
version = version.strip() |
9 | 9 |
|
10 | 10 |
# Find all Mininet path references |
11 |
lines = co( "grep -or 'Mininet \w\.\w\.\w\w*' *", shell=True )
|
|
11 |
lines = co( "grep -or 'Mininet \w\.\w\.\w[\w\+]*' *", shell=True )
|
|
12 | 12 |
|
13 | 13 |
error = False |
14 | 14 |
|
Also available in: Unified diff