heartever / pep-dna

PEP-DNA: a Performance Enhancing Proxy for Deploying Network Architectures

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Contributors Forks Stargazers Issues


PEP-DNA

PEP-DNA: a Performance Enhancing Proxy for Deploying Network Architectures
Explore the Wiki »

View Tutorials · Report Bug · Request Feature

Table of Contents

Introduction

PEP-DNA is a Performance Enhancing Proxy designed specifically for Deploying new Network Architectures. It is implemented in the Linux kernel and can be installed wherever a translation needs to occur between a new architecture and TCP/IP domains. PEP-DNA is currently able to interconnect a TCP connection with (i) another TCP connection, (ii) the Recursive InterNetwork Architecture (Visit http://pouzinsociety.org to read more about RINA), and (iii) a Content-Centric Networking domain (https://named-data.net/publications/van-ccn-bremen-description/). This README.md file provides information on repeating and replicating the results of the PEP-DNA paper published. For more information on how to use PEP-DNA in different scenarios, check the Tutorials on the Wiki pages.

Build instructions

We have tested PEP-DNA with the current stable distribution of Ubuntu and Debian, with kernel versions between 4.1.x to 5.4.x. In order to run all the experiments described in the paper, PEP-DNA needs to be built with RINA and CCN support. We use the RINA stack, which is available at https://github.com/IRATI/stack, and CCN-lite, which can be found at https://github.com/cn-uofbasel/ccn-lite, to build RINA and CCN network. To facilitate the installation process, we include the RINA stack and CCN-lite in this repository.

Note that a user with sudo privileges is required to load PEP-DNA and RINA kernel modules apply other commands.

Prerequisites

First, install the user-space dependencies which are required to build RINA.

  sudo apt-get update
  sudo apt-get install build-essential autoconf automake libtool pkg-config git
  g++ libssl-dev libelf-dev protobuf-compiler libprotobuf-dev socat python python3
  openjdk-8-jre openjdk-8-jdk linux-headers-$(uname -r)

Next, use the following to install the requirements for CCN-lite:

  sudo apt-get install cmake libssl-dev pkg-config libssl-dev libcmocka-dev
  doxygen

Install libnl-3-dev for Netlink sockets support.

  sudo apt-get install libnl-3-dev

Additional tools are required to configure Linux hosts, run the experiments and collect information.

  sudo apt-get install sysstat ethtool cpufrequtils httping httperf apache2

Installation

  1. Clone the repository (We recommend to clone the repo in the home directory so that it matches the path used in the scripts.)

      cd ~
      git clone https://github.com/kr1stj0n/pep-dna.git
  2. Build and install RINA's kernel-space and user-space software

      cd ~/pep-dna/rina-stack
      sudo ./configure
      sudo -E make install
  3. Build CCN-lite

    • Set environment variable $CCNL_HOME and add the binary folder of CCN-lite to your $PATH:
        cd ~/pep-dna/ccn-lite
        export CCNL_HOME="`pwd`"
        export PATH=$PATH:"$CCNL_HOME/bin"

    To make these variables permanent, add them to your shell's .rc file, e.g. ~/.bashrc.

    • Build CCN-lite using cmake:
        cd $CCNL_HOME
        mkdir build && cd build
        cmake ..
        make
  4. Configure and install PEP-DNA

      cd ~/pep-dna/pepdna
      ./configure --with-rina --with-ccn --with-localhost
      make all
      sudo -E make install

To configure PEP-DNA with RINA support or CCN suport --with-rina or --with-ccn flags needs to be used. Use --with-debug to build PEP-DNA with DEBUG flag. Note that building in debug mode will reduce the performance of the proxy and print detailed logging in the kern.log file. When PEP-DNA runs at the same host as the server, it needs to be configured with ---with-localhost flag in order to enable full transpacency at this case (More details will be provided later). For our experiments, the commands above are sufficient.

All the testing applications and scripts used to run the experiments, collect the results and plot the graphs are located in https://github.com/kr1stj0n/pep-dna/tree/main/pepdna/utils/apps.
Run the following commands to install them to /usr/bin/.

  cd ~/pep-dna/pepdna/utils/apps
  make all
  sudo -E make install

Publications

Reproducibility

We aim to make our work entirely reproducible and encourage interested researchers to test the code and replicate the reported experimental results. The PEP-DNA implementation and documentation needed to reproduce all the experiments described in the paper are available in this public repository. The tools we developed to the run the experiments were installed at Step 4 of the previous section. The scripts for automated testing, analysis and plotting of the generated data are located at https://github.com/kr1stj0n/pep-dna/tree/main/pepdna/utils/scripts/ alongside with a detailed README_scripts.md file. Read the README_scripts.md file for a detailed explanation on how to set the variables for your own testbed environment, run all the experiments and plot the generated dataset.

For more step-by-step examples on how to use PEP-DNA in different scenarios, please refer to the Wiki pages.

Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/udp-support)
  3. Commit your Changes (git commit -m 'Added UDP support')
  4. Push to the Branch (git push origin feature/udp-support)
  5. Open a Pull Request

License

Distributed under the GPL License. See LICENSE in https://github.com/kr1stj0n/pep-dna/tree/main/pepdna/ for more information.

Contact

Kristjon Ciko - kristjoc@ifi.uio.no

Project Link: https://github.com/kr1stj0n/pep-dna

Acknowledgements

About

PEP-DNA: a Performance Enhancing Proxy for Deploying Network Architectures


Languages

Language:C++ 40.9%Language:C 39.1%Language:Makefile 13.6%Language:Shell 1.7%Language:Python 1.6%Language:M4 1.3%Language:SWIG 0.7%Language:Perl 0.4%Language:Roff 0.3%Language:Java 0.2%Language:CMake 0.2%Language:Vim Script 0.0%Language:Dockerfile 0.0%