mininet @ c8b85746
Name | Size | Revision | Age | Author | Comment |
---|---|---|---|---|---|
bin | bd964adb | over 8 years | Brandon Heller | mn: change default passive listening port to 66... | |
custom | dec1f402 | over 8 years | Brandon Heller | custom topo: remove author name No need for th... | |
debian | 63d669f7 | over 8 years | Bob Lantz | Update to match launchpad. | |
doc | c04ef88e | over 8 years | Bob Lantz | Add note regarding removing old OVS junk. | |
examples | c8b85746 | over 8 years | Bob Lantz | pass code check | |
mininet | c8b85746 | over 8 years | Bob Lantz | pass code check | |
util | 1e9b5f61 | over 8 years | Brandon Heller | install.sh: add Telnet Reported-by: Julius Bac... | |
.gitattributes | 17 Bytes | 29884297 | over 8 years | Bob Lantz | show method names in git diff output |
.gitignore | 106 Bytes | 4f33cad0 | over 8 years | Bob Lantz | Ignore more stuff, notably generated docs and m... |
.pylint | 8.74 KB | 350fdbfe | almost 9 years | Bob Lantz | Allow modules (node.py) to be 1500 lines. Maybe... |
INSTALL | 3.67 KB | 21366afc | over 8 years | Bob Lantz | 2.0.0rc1 -> 2.0.0 final |
LICENSE | 1.66 KB | 21366afc | over 8 years | Bob Lantz | 2.0.0rc1 -> 2.0.0 final |
Makefile | 1.46 KB | e1205a8a | over 8 years | Brandon Heller | Add a simple unit test for link/host creation w... |
README.md | 4.18 KB | 21366afc | over 8 years | Bob Lantz | 2.0.0rc1 -> 2.0.0 final |
mnexec.c | 4.59 KB | d85a58fe | over 8 years | Bob Lantz | Autogenerate man page for mnexec. |
setup.py | 1.19 KB | e8238d18 | over 8 years | Bob Lantz | Use Mininet version number from mininet.net Con... |
Latest revisions
View all revisions | View revisions
README
Mininet: Rapid Prototyping for Software Defined Networks
The best way to emulate almost any network on your laptop!
Version 2.0.0
What is Mininet?
Mininet emulates a complete network of hosts, links, and switches on a single machine. To create a sample two-host, one-switch network, just run:
sudo mn
Mininet is useful for interactive development, testing, and demos, especially those using OpenFlow and SDN. OpenFlow-based network controllers prototyped in Mininet can usually be transferred to hardware with minimal changes for full line-rate execution.
How does it work?
Mininet creates virtual networks using process-based virtualization
and network namespaces - features that are available in recent Linux
kernels. In Mininet, hosts are emulated as bash
processes running in
a network namespace, so any code that would normally run on a Linux
server (like a web server or client program) should run just fine
within a Mininet "Host". The Mininet "Host" will have its own private
network interface and can only see its own processes. Switches in
Mininet are software-based switches like Open vSwitch or the OpenFlow
reference switch. Links are virtual ethernet pairs, which live in the
Linux kernel and connect our emulated switches to emulated hosts
(processes).
Features
Mininet includes:
A command-line launcher (
mn
) to instantiate networks.A handy Python API for creating networks of varying sizes and topologies.
Examples (in the
examples/
directory) to help you get started.Full API documentation via Python
help()
docstrings, as well as the ability to generate PDF/HTML documentation withmake doc
.Parametrized topologies (
Topo
subclasses) using the Mininet object. For example, a tree network may be created with the command:mn --topo tree,depth=2,fanout=3
A command-line interface (
CLI
class) which provides useful diagnostic commands (likeiperf
andping
), as well as the ability to run a command to a node. For example,mininet> h11 ifconfig -a
tells host h11 to run the command
ifconfig -a
A "cleanup" command to get rid of junk (interfaces, processes, files in /tmp, etc.) which might be left around by Mininet or Linux. Try this if things stop working!
mn -c
New features in 2.0.0
Mininet 2.0.0 is a major upgrade and provides a number of enhancements and new features, including:
"Mininet-HiFi" functionality:
- Link bandwidth limits using
tc
(TCIntf
andTCLink
classes) - CPU isolation and bandwidth limits (
CPULimitedHost
class)
- Link bandwidth limits using
Support for Open vSwitch 1.4+ (including Ubuntu OVS packages)
Debian packaging (and
apt-get install mininet
in Ubuntu 12.10)First-class Interface (
Intf
) and Link (Link
) classes for easier extensibilityAn upgraded Topology (
Topo
) class which supports node and link customizationMan pages for the
mn
andmnexec
utilities.
[Since the API (most notably the topology) has changed, existing code that runs in Mininet 1.0 will need to be changed to run with Mininet 2.0. This is the primary reason for the major version number change.]
Installation
See INSTALL
for installation instructions and details.
Documentation
In addition to the API documentation (make doc
), much useful
information, including a Mininet walkthrough and an introduction
to the Python API, is available on the
Mininet Web Site.
There is also a wiki which you are encouraged to read and to
contribute to, particularly the Frequently Asked Questions (FAQ.)
Support
Mininet is community-supported. We encourage you to join the
Mininet mailing list, mininet-discuss
at:
https://mailman.stanford.edu/mailman/listinfo/mininet-discuss
Contributing
Mininet is an open-source project and is currently hosted at https://github.com/mininet. You are encouraged to download the code, examine it, modify it, and submit bug reports, bug fixes, feature requests, and enhancements!
Best wishes, and we look forward to seeing what you can do with Mininet to change the networking world!
Credits
The Mininet Team:
- Bob Lantz
- Brandon Heller
- Nikhil Handigol
- Vimal Jeyakumar
Also available in: Atom