All Projects → mininet → Mininet

mininet / Mininet

Licence: other
Emulator for rapid prototyping of Software Defined Networks

Programming Languages

python
139335 projects - #7 most used programming language
c
50402 projects - #5 most used programming language
shell
77523 projects
Makefile
30231 projects

Projects that are alternatives of or similar to Mininet

flowmanager
An SDN application that gives its user the ability to control flows in an OpenFlow network without coding.
Stars: ✭ 60 (-98.57%)
Mutual labels:  sdn, openflow
basebox
A tiny OpenFlow controller for OF-DPA switches.
Stars: ✭ 39 (-99.07%)
Mutual labels:  sdn, openflow
multipath
Multipath routing with Ryu and Pyretic SDN Controllers
Stars: ✭ 56 (-98.67%)
Mutual labels:  sdn, openflow
python-openflow
Low level OpenFlow messages parser used by Kytos SDN Platform
Stars: ✭ 44 (-98.95%)
Mutual labels:  sdn, openflow
sfc app
Service Function Chaining Application for Ryu SDN controller
Stars: ✭ 25 (-99.4%)
Mutual labels:  sdn, openflow
Nexusforever
An emulator for the defunct MMORPG WildStar which supports build 16042 (Final Patch)
Stars: ✭ 322 (-92.33%)
Mutual labels:  emulator
Sapphire
A Final Fantasy XIV 4.0+ Server Emulator written in C++
Stars: ✭ 366 (-91.28%)
Mutual labels:  emulator
Fake Gcs Server
Google Cloud Storage emulator & testing library.
Stars: ✭ 316 (-92.47%)
Mutual labels:  emulator
Stella
A multi-platform Atari 2600 Emulator
Stars: ✭ 315 (-92.49%)
Mutual labels:  emulator
Jswqx
文曲星模拟器
Stars: ✭ 386 (-90.8%)
Mutual labels:  emulator
Firebird
Third-party multi-platform emulator of the ARM-based TI-Nspire calculators
Stars: ✭ 374 (-91.09%)
Mutual labels:  emulator
Pegasus Frontend
A cross platform, customizable graphical frontend for launching emulators and managing your game collection.
Stars: ✭ 364 (-91.33%)
Mutual labels:  emulator
Core
Common Open Research Emulator
Stars: ✭ 330 (-92.14%)
Mutual labels:  emulator
Trinity
Trinity Exploit - Emulator Escape
Stars: ✭ 371 (-91.16%)
Mutual labels:  emulator
Anese
Another NES Emulator - written for fun & learning - first implementation of wideNES
Stars: ✭ 323 (-92.3%)
Mutual labels:  emulator
Servuo
An Ultima Online server emulator written in C# .NET
Stars: ✭ 378 (-90.99%)
Mutual labels:  emulator
Server
EQEmu - Open Source EverQuest Server
Stars: ✭ 319 (-92.4%)
Mutual labels:  emulator
Avocado
🥑 PlayStation 1 emulator
Stars: ✭ 356 (-91.52%)
Mutual labels:  emulator
Simplify
Android virtual machine and deobfuscator
Stars: ✭ 3,865 (-7.89%)
Mutual labels:  emulator
Minivmac4ios
Mini vMac for iOS
Stars: ✭ 353 (-91.59%)
Mutual labels:  emulator

Mininet: Rapid Prototyping for Software Defined Networks

The best way to emulate almost any network on your laptop!

Mininet 2.3.0

Build Status

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 with make 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 (like iperf and ping), 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

Python 3 Support

  • Mininet 2.3.0 supports Python 3 and Python 2!

  • You can install both the Python 3 and Python 2 versions of Mininet side by side, but the most recent installation will determine which Python version is used by default by mn.

  • You can run mn directly with Python 2 or Python 3, as long as the appropriate version of Mininet is installed, e.g.

    $ sudo python2 `which mn`
    
  • More information regarding Python 3 and Python 2 support may be found in the release notes on http://docs.mininet.org.

Other Enhancements and Information

  • Support for Ubuntu 20.04 LTS (and 18.04 and 16.04)

  • More reliable testing and CI via github actions

  • Additional information about this release and previous releases may be found in the release notes on http://docs.mininet.org.

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) at http://faq.mininet.org.

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

Join Us

Thanks again to all of the Mininet contributors and users!

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, new features and other issues and pull requests. Thanks to everyone who has contributed code to the Mininet project (see CONTRIBUTORS for more info!) It is because of everyone's hard work that Mininet continues to grow and improve.

Enjoy Mininet

Have fun! We look forward to seeing what you will do with Mininet to change the networking world.

Bob Lantz, on behalf of the Mininet Contributors

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].