forked from VUTBR/libnf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
67 lines (35 loc) · 1.26 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
libnf - C interface for processing nfdump files
IMPORTANT LINKS
===============================================
Official homepage:
http://libnf.net
C API interface documentation:
http://libnf.net/doc/api/
Package directory:
http://libnf.net/packages/
Github repository:
https://github.com/VUTBR/libnf
Libnf interface for perl (Net::NfDump package) available via cpan:
http://search.cpan.org/~tpoder/Net-NfDump/lib/Net/NfDump.pm
https://github.com/VUTBR/libnf-perl
INSTALLATION FROM TARBALL
===============================================
1. Download libnf tarball from http://libnf.net/packages/
# wget http://libnf.net/packages/libnf-x.xx.tar.gz
2. Unzip package and enter the package dir
# tar xzf libnf-x.xx.tar.gz
# cd libnf-x.xx
3. Run configure script
# ./configure
4. Run make and install files
# make && make install
5. Look at the examples directory how to use libnf
INSTALLATION FROM GIT REPOSITORY
===============================================
1. Get libnf git repository
# git clone --recursive https://github.com/VUTBR/libnf
2. Go into libnf source directory
# cd libnf
3. Fetch nfdump sources an prepare for using in libnf
# ./prepare-nfdump.sh
4. Follow instructions 3., 4. and 5. from TARBALL INSTALLATION