ntop/nDPI
github.com·1d
📝ABNF Parsing
Preview
Report Post

nDPI

What is nDPI ?

nDPI® is an open source LGPLv3 library for deep-packet inspection.

A generic FAQ about nDPI is available here

How To Compile nDPI

In order to compile this project do

  • ./autogen.sh && ./configure
  • make

If you get some errors while compiling croaring.c, try:

  • ./autogen.sh && ./configure –enable-old-croaring
  • make

To compile the library w/o any tools or tests:

  • ./autogen.sh && ./configure –with-only-libndpi
  • make

Out-of-tree builds are supported:

  • ./autogen.sh
  • mkdir build
  • cd build
  • ../configure && make

To run tests do additionally:

  • ./tests/do.sh # Generate and check for diff’s in PCAP files
  • ./tests/do-unit.sh # Run unit tests
  • ./tests/do-dga.sh # Run DGA…

Similar Posts

Loading similar posts...