blob: 4a05c678caab0568397db5c849c4f4fd2ee1e1ae [file] [log] [blame]
Bart De Schuymer1abc55d2002-06-01 19:23:47 +00001FOLLOW THESE SIMPLE GUIDELINES:
2-------------------------------
3
Bart De Schuymer095f2582005-10-20 17:29:07 +00004Compiling the source code:
5%make
6Put the files in the right directories:
Bart De Schuymer4a721be2002-11-20 19:40:47 +00007%make install
Bart De Schuymer1abc55d2002-06-01 19:23:47 +00008
Bart De Schuymer4a721be2002-11-20 19:40:47 +00009If you are using the CVS code or need your own kernel includes, do this
10instead (change the include directory to the appropriate one):
Bart De Schuymer06a96822003-02-19 20:09:51 +000011%make install KERNEL_INCLUDES=/usr/src/linux/include
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000012
Bart De Schuymer7d9e3eb2006-02-06 21:24:02 +000013If you want to make a static binary for ebtables, containing all the
14extensions, without shared libraries, do this (this will make a
15binary called 'static', which you can rename):
16%make static
17
Bart De Schuymer5d44bac2011-07-10 09:03:27 +000018WHAT GETS INSTALLED AND WHAT OPTIONS ARE AVAILABLE?
19---------------------------------------------------
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000020
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000021- The ebtables manual gets installed in /usr/local/man/man8
22 To put the manual somewhere else, include MANDIR=<<man-path/man>> as
23 option on the command line.
24 The Makefile will append /man8/ebtables.8.
Bart De Schuymera2960382003-04-01 17:29:13 +000025- ethertypes is by default placed in /etc/, if you
26 want to change this, include ETHERTYPESPATH=<<path>>.
Bart De Schuymer095f2582005-10-20 17:29:07 +000027- The userspace programs ebtables ebtables-save and ebtables-restore are
28 are copied by default to /usr/local/sbin/ebtables. If you want to put
29 the executables somewhere else, include BINPATH=<<path>>.
30- The ebtables initialisation file (enabling use of 'service ebtables') is
31 copied to /etc/rc.d/init.d (change with option INITDIR)
32- The ebtables configuration file (ebtables-config) is copied to /etc/sysconfig
Bart De Schuymer5d44bac2011-07-10 09:03:27 +000033- ebtables can use a lock file to enable concurrent execution of the ebtables
34 tool. The standard location of the lock file is /var/lib/ebtables/lock.
35 Include LOCKFILE=<<path-to-file>> if you want to use another file.
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000036
37That's all
Bart De Schuymer30c04a22004-11-29 21:25:36 +000038
Bart De Schuymer095f2582005-10-20 17:29:07 +000039You can also use a base directory different from the root directory (/),
40using the DESTDIR option. See the Makefile for more details.
41
42
Bart De Schuymer5d44bac2011-07-10 09:03:27 +000043ADDITIONAL PROGRAMS:
Bart De Schuymer30c04a22004-11-29 21:25:36 +000044----------------------
Bart De Schuymer26a486e2005-06-29 18:44:30 +000045-- examples/ulog/test_ulog.c --
Bart De Schuymer30c04a22004-11-29 21:25:36 +000046
47Contains an example to receive and parse netlink messages containing
48packets seen by the ebtables ulog watcher.
49
50Compile with:
Bart De Schuymere4e4faa2009-11-22 11:05:25 +000051%make test_ulog KERNEL_INCLUDES=/usr/src/linux/include
Bart De Schuymer30c04a22004-11-29 21:25:36 +000052
53Usage:
54%examples/ulog/test_ulog NETLINK_GROUP
55%ebtables -A chain --ulog-nlgroup NETLINK_GROUP
Bart De Schuymer26a486e2005-06-29 18:44:30 +000056
57-- examples/perf_test/perf_test --
58
59A test script to compare the performance for the different ways to
Bart De Schuymer095f2582005-10-20 17:29:07 +000060construct an ebtables table. This is deprecated and should probably
61be ignored.