Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mininet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Olaf Bergmann
mininet
Commits
ed097b3b
Commit
ed097b3b
authored
15 years ago
by
Bob Lantz
Browse files
Options
Downloads
Patches
Plain Diff
Working a bit on text files. Removed netns.
parent
bca38c99
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
INSTALL
+6
-8
6 additions, 8 deletions
INSTALL
README
+22
-25
22 additions, 25 deletions
README
netns.c
+0
-24
0 additions, 24 deletions
netns.c
with
28 additions
and
57 deletions
INSTALL
+
6
−
8
View file @
ed097b3b
...
...
@@ -10,12 +10,12 @@ Preliminary Mininet Installation/Configuration Notes
This places the mininet package in /usr/lib/python-2.5/site-packages/,
so that 'import mininet' will work.
-
Installation is simplest with a distribution that includes a kernel
which supports the CLONE_NETNS unshare flag by default. Debian 5.0+ does
(e.g. current debian-testing release); Ubuntu doesn't. If your kernel
doesn't support it, you will need to build and install a
kernel that
does! If you are using Open
V
Switch, 2.6.33 works best. For
the reference
kernel switch, 2.6.30
i
s compatible.
-
Mininet requires a kernel built with support for the CLONE_NETNS unshare
flag by default.
If your kernel
doesn't support it, you will need to build and install a
kernel that
does! If you are using Open
v
Switch, 2.6.33 works best. For
the reference
kernel switch, 2.6.30 s
hould be
compatible.
- Mininet should probably be run either on a machine with
no other important processes, or on a virtual machine.
...
...
@@ -62,5 +62,3 @@ Preliminary Mininet Installation/Configuration Notes
sudo sysctl -p
---
This diff is collapsed.
Click to expand it.
README
+
22
−
25
View file @
ed097b3b
...
...
@@ -3,7 +3,7 @@
aka
How to Squeeze a 1024-node OpenFlow Network onto your Laptop
(Extremely Experimental Development Version 0.1, December 2009)
Development Release, March 2010
---
...
...
@@ -15,52 +15,51 @@ datapath) are created as processes in separate network namespaces. This
allows a complete OpenFlow network to be simulated on top of a single
Linux kernel.
Mininet provides a set of Python classes and functions which enable
creation of OpenFlow networks of varying sizes and topologies.
Although Mininet may be invoked directly from the command line, it also
incorporates a handy Python API, in the form of classes and functions
which enable creation of OpenFlow networks of varying sizes and topologies.
In order to run Mininet, you must have:
* A Linux 2.6.26 or greater kernel compiled with network namespace support
enabled. (debian-testing seems to have such a kernel, but it doesn't
work for compiling nox, unfortunately.) 2.6.33 or greater is recommended
for faster switch shutdown.
enabled (see INSTALL for additional information.)
* The OpenFlow reference implementation (either the user or kernel
datapath may be used, and the tun or ofdatapath kernel modules must be
loaded, respectively)
* An OpenFlow implementation (either the reference user or kernel
space implementations, or Open vSwitch.) Appropriate kernel modules
(e.g. tun and ofdatapath for the reference kernel implementation) must
be loaded.
* Python, bash, ping, iperf, etc.
* Root privileges (required for network device access)
* The netns program (included as netns.c), or an equivalent program
of the same name, installed in an appropriate path location
* mininet.py installed in an appropriate Python path location
Currently mininet includes:
- A simple node infrastructure (Host, Switch, Controller classes) for
creating virtual OpenFlow networks
- A simple network infrastructure (
class Network and its descendants
TreeNet, GridNet and LinearNet
)
f
or
creating scalable topologies an
d
running experiments (e.g. TreeNet(2,3).run(pingTest) )
- A simple network infrastructure (
Mininet class) supporting parametrized
topologies (Topo subclasses.
)
F
or
example, a tree network may be create
d
with the command
- Some simple tests which can be run using someNetwork.run( test )
- A simple command-line interface which may be invoked on a network using
.run( Cli ). It provides useful diagnostic commands, as well as the
ability to send a command to a node. For example,
# mn --topo tree,depth=2,fanout==3
- Basic tests, including connectivity (ping) and bandwidth (iperf)
- A command-line interface (CLI class) which provides useful
diagnostic commands, as well as the ability to send a command to a
node. For example,
mininet> h11 ifconfig -a
tells host h11 to run the command 'ifconfig -a'
- A 'cleanup'
script
to get rid of junk (interfaces, processes, files in
- A 'cleanup'
command
to get rid of junk (interfaces, processes, files in
/tmp, etc.) which might be left around by mininet. Try this if things
stop working!
# mn -c
- Examples (in examples/ directory) to help you get started.
Batteries are not included (yet!)
...
...
@@ -71,5 +70,3 @@ file. Good luck!
---
Bob Lantz
rlantz@cs.stanford.edu
This diff is collapsed.
Click to expand it.
netns.c
deleted
100644 → 0
+
0
−
24
View file @
bca38c99
/* netns: run a command in a network namespace.
* Simplified from netunshare.c on lxc.sf.net
*/
#include
<stdio.h>
#include
<linux/sched.h>
#include
<unistd.h>
int
main
(
int
argc
,
char
*
argv
[])
{
if
(
unshare
(
CLONE_NEWNET
)
==
-
1
)
{
perror
(
"unshare"
);
return
1
;
}
if
(
argc
)
{
execve
(
argv
[
1
],
&
argv
[
1
],
__environ
);
perror
(
"execve"
);
return
1
;
}
return
0
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment