Giter VIP home page Giter VIP logo

dpdk_router-2's Introduction

Setting up DPDK

Compile DPDK cd dpdk make config T=x86_64-native-linuxapp-gcc make T=x86_64-native-linuxapp-gcc

Load the igb_uio driver and its dependency uio modprobe uio insmod build/kmod/igb_uio.ko

Use the tool dpdk-devbind.py to bind the VirtIO NICs to the igb_uio driver. (Find out how to do this, the tool is pretty self-explanatory.) usertools/dpdk-devbind.py --h

Setup hugetlbfs huge pages for DPDK mkdir /mnt/huge mount -t hugetlbfs nodev /mnt/huge Statically allocate 256 2MB huge pages echo 256 > /sys/devices/system/node/node0/hugepages/hugepages-2048kB/nr_hugepages

Compiling your App

This example project comes with a CMakeFile and a simple wrapper that initializes DPDK for you. Run the following steps to build the router app cmake . make

That's all!

Commpiling gtest

Compiling the gtest library is required to execute table-test

Fetching gtest apt-get install libgtest-dev

Compiling gtest cd /usr/src/googletest/googletest cmake . make install

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.