/Kathara

Implementation of the notorious Netkit using Python and Docker, allowing for SDN, NFV and traditional routing protocols.

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

Kathará

License: GPL v3

From the Greek Καθαρά. Implementation of the notorious Netkit using Python and Docker. 10 times faster than Netkit and more than 100 times lighter, allows easy configuration and deploy of arbitrary virtual networks with for SDN, NFV and traditional routing protocols.

Kathará comes with P4, OpenVSwitch, Quagga, Bind, and more, but can also be extended with your own container images.

Thanks to Docker, the framework has the performances to run in production and our images can emulate most network equipments.

Installation

Check the Wiki for the installation guide.

Graphical User Interface

You can download both Kathará and the GUI by cloning recursively using

  • git clone --recursive https://github.com/KatharaFramework/Kathara.git

Or by downloading the pre-compiled version from the releases page.

Being based on Netkit, all previous tools still work. In particular we suggest Netkit Lab Generator, a GUI that allows the easy creation of a lab configuration and the visualization of its network topology. Netkit Lab Generator

Provided Docker Images

A list of the Docker images we provided can be found at this page in the Docker Hub.

Manual

The interface of Kathará is basically the same we used for Netkit, and it's available here: Man page of NETKIT.

The main difference is the way we specify the interfaces in the vstart command (now requiring --eth 0:A --eth 1:B ...) but why would you ever use vstart when you have lstart? However an example for the syntax of vstart now may be: vstart --eth 0:A --eth 1:B pc1 where "pc1" is the name of the network node to be started.

In addition there is another command, lwipe, that erases every container and network created by Kathará, including its cache.

Also the subnet 172.0.0.0/8 (basically any IP starting with 172) is reserved and should not be used when configuring links.

For ltestthere are 2 minor adjustments:

  • --verify needs to be followed by = before the option (e.g. ltest --verify=user).
  • --script-mode has been replaced by simply sending stdout to /dev/null (e.g. ltest --verify=user &> /dev/null).

Example

  • Installa Kathará by following the installation steps above
  • Download and unpack MARACAS_lab from here.
  • The topology of this lab can be found here.
  • cd inside MARACAS_lab and run lstart:
    • Linux: $NETKIT_HOME/lstart
    • Windows: %NETKIT_HOME%\lstart
  • Kathará will read the configuration of the lab from lab.conf, lab.dep and the various *.startup files and start the containers, opening terminal windows to interact with the virtual network nodes.
  • After you're done experimenting, simply run lclean:
    • Linux: $NETKIT_HOME/lclean
    • Windows: %NETKIT_HOME%\lclean
  • This will kill and remove any container.

Extend Kathará

Extending Kathará is actually very simple. Any local or remote Docker image tagged as kathara/IMAGENAME can be used with vstart --image=IMAGENAME --eth=0:A node_name or with lstart having something like that in lab.conf: node_name[image]=IMAGENAME.

To alter (locally) an existing Kathará image refer to the following steps (remember that, by default, Docker needs root or sudo on Linux).

  1. docker pull kathara/netkit_base (or kathara/p4)
  2. docker run -tid --name YOUR_NEW_NAME kathara/netkit_base
  3. docker exec -ti YOUR_NEW_NAME bash
  4. Do your thing, then exit.
  5. docker commit YOUR_NEW_NAME kathara/YOUR_NEW_NAME
  6. docker rm -f YOUR_NEW_NAME

TODO

  • Components and configuration checker.