-
Notifications
You must be signed in to change notification settings - Fork 77
/
README
45 lines (29 loc) · 976 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
README for OpenDPI
==================
OpenDPI is a software component for traffic classification based on deep packet inspection.
Visit http://opendpi.org/ or http://code.google.com/p/opendpi/ for more information.
Building OpenDPI
================
OpenDPI is built using autotools and a gnu compatible C compiler like gcc.
To build the OpenDPI_demo application an installation of libpcap and the libpcap developer files are required.
Building an OpenDPI release from the command line:
$ tar xvfz opendpi-1.1.0.tar.gz
$ cd opendpi-1.1.0
$ ./configure
$ make
$ su (if necessary for the next line)
$ make install
Building OpenDPI from SVN (First Time):
$ svn checkout http://opendpi.googlecode.com/svn/trunk/ opendpi
$ cd opendpi
$ ./autogen.sh
$ make
$ su (if necessary for the next line)
$ make install
Building OpenDPI from SVN (Updating):
$ cd opendpi
$ make clean
$ svn up
$ make
$ su (if necessary for the next line)
$ make install