mininet / examples @ 896c4cbc
Name | Size | Revision | Age | Author | Comment |
---|---|---|---|---|---|
README | 3.26 KB | bf97d21c | over 7 years | Gustavo Pantuza Coelho Pinto | Added dynamicnet.py to README file of the examples |
baresshd.py | 701 Bytes | 12fea0f6 | about 8 years | Brandon Heller | examples/baresshd: ensure root permissions Pre... |
consoles.py | 15.2 KB | 32de4c9e | over 7 years | Brian O'Connor | reverted iperf output and fixed regex |
controllers.py | 1011 Bytes | 2a079911 | over 7 years | Bob Lantz | Clarify controllers.py and add RemoteController |
controllers2.py | 1.59 KB | dcb3036b | almost 8 years | Bob Lantz | Change to use addLink() interface for symmetry/... |
controlnet.py | 3.37 KB | 679a3f19 | over 7 years | Bob Lantz | Don't stop data network controllers twice. |
cpu.py | 2.32 KB | 2eb0593c | about 8 years | Brandon Heller | examples/cpu: Fix typo, note existence in README |
emptynet.py | 948 Bytes | 82b72072 | over 10 years | Bob Lantz | Pass pylint. |
hwintf.py | 1.33 KB | c8b85746 | about 8 years | Bob Lantz | pass code check |
limit.py | 1.56 KB | fcd01592 | about 8 years | Brandon Heller | Move CPU limit into net, to be reused in future... |
linearbandwidth.py | 3.22 KB | edf60032 | about 8 years | Brandon Heller | pep8: fix E128 continuation line under-indented... |
miniedit.py | 24.9 KB | a3879524 | over 7 years | Brian O'Connor | fixed host ip assignment and shutdown with xter... |
multiping.py | 2.22 KB | edf60032 | about 8 years | Brandon Heller | pep8: fix E128 continuation line under-indented... |
multipoll.py | 2.41 KB | edf60032 | about 8 years | Brandon Heller | pep8: fix E128 continuation line under-indented... |
multitest.py | 1.02 KB | 11782ae0 | about 10 years | Bob Lantz | Commented out kernel ref, moved to Open vSwitch. |
nat.py | 3.76 KB | 33e39a24 | over 7 years | Bob Lantz | Fix some pylint messages. |
popen.py | 1023 Bytes | 50cebe67 | almost 9 years | Bob Lantz | Add pmonitor() to make it easy to monitor popen... |
popenpoll.py | 930 Bytes | 6c947bca | over 8 years | Bob Lantz | More indent errors - curse you emacs. |
scratchnet.py | 1.98 KB | a49c85a6 | almost 9 years | Bob Lantz | Fix examples to work with new API (and vice-ver... |
scratchnetuser.py | 2.4 KB | bf208cde | about 8 years | Brandon Heller | Fix SSHD example by generalizing input intf arg... |
simpleperf.py | 1.47 KB | d7768ab2 | about 8 years | Brandon Heller | examples/simpleperf: Warn in docstring about ef... |
sshd.py | 2.48 KB | a49c85a6 | almost 9 years | Bob Lantz | Fix examples to work with new API (and vice-ver... |
tree1024.py | 534 Bytes | 11782ae0 | about 10 years | Bob Lantz | Commented out kernel ref, moved to Open vSwitch. |
treeping64.py | 950 Bytes | 2e089b5e | about 8 years | Brandon Heller | pep8: Fix E127 continuation line over-indented ... |
Latest revisions
README
Mininet Examples
========================================================
These examples are intended to help you get started using
Mininet's Python API.
========================================================
### baresshd.py:
This example uses Mininet's medium-level API to create an sshd
process running in a namespace. Doesn't use OpenFlow.
### consoles.py:
This example creates a grid of console windows, one for each node,
and allows interaction with and monitoring of each console, including
graphical monitoring.
### controllers.py:
This example creates a network with multiple controllers, by
using a custom Switch() subclass.
### controllers2.py:
This example creates a network with multiple controllers by
creating an empty network, adding nodes to it, and manually
starting the switches.
### controlnet.py:
This examples shows how you can model the control network as well
as the data network, by actually creating two Mininet objects.
### cpu.py:
This example tests iperf bandwidth for varying CPU limits.
### emptynet.py:
This example demonstrates creating an empty network (i.e. with no
topology object) and adding nodes to it.
### hwintf.py:
This example shows how to add an interface (for example a real
hardware interface) to a network after the network is created.
### limit.py:
This example shows how to use link and CPU limits.
### linearbandwidth.py:
This example shows how to create a custom topology programatically
by subclassing Topo, and how to run a series of tests on it.
### miniedit.py:
This example demonstrates creating a network via a graphical editor.
### multiping.py:
This example demonstrates one method for
monitoring output from multiple hosts, using `node.monitor()`.
### multipoll.py:
This example demonstrates monitoring output files from multiple hosts.
### multitest.py:
This example creates a network and runs multiple tests on it.
### nat.py:
This example shows how to connect a Mininet network to the Internet
using NAT. It also answers the eternal question "why can't I ping
google?"
### popen.py:
This example monitors a number of hosts using `host.popen()` and
`pmonitor()`.
### popenpoll.py:
This example demonstrates monitoring output from multiple hosts using
the `node.popen()` interface (which returns Popen objects) and `pmonitor()`.
### scratchnet.py, scratchnetuser.py:
These two examples demonstrate how to create a network by using the lowest-
level Mininet functions. Generally the higher-level API is easier to use,
but scratchnet shows what is going on behind the scenes.
### simpleperf.py:
A simple example of configuring network and CPU bandwidth limits.
### sshd.py:
This example shows how to run an sshd process in each host, allowing
you to log in via ssh. This requires connecting the Mininet data network
to an interface in the root namespace (generaly the control network
already lives in the root namespace, so it does not need to be explicitly
connected.)
### tree1024.py:
This example attempts to create a 1024-host network, and then runs the
CLI on it. It may run into scalability limits, depending on available
memory and sysctl configuration (see `INSTALL`.)
### treeping64.py:
This example creates a 64-host tree network, and attempts to check full
connectivity using ping, for different switch/datapath types.
Also available in: Atom