summaryrefslogtreecommitdiffstats
path: root/ulogd.conf
diff options
context:
space:
mode:
authorlaforge <laforge>2003-04-27 07:47:26 +0000
committerlaforge <laforge>2003-04-27 07:47:26 +0000
commit4f294449b20fe1c3375f2d3d1a096710c0fb8566 (patch)
treed8822af5e06d6d37314658a0f2870d2044303d20 /ulogd.conf
parentcab296b27b9df32d7645325762973a39e5ce50c8 (diff)
This patch fixes so the pathes in ulogd.conf matches what you gave to
configure.. (Magnus Boden)
Diffstat (limited to 'ulogd.conf')
-rw-r--r--ulogd.conf82
1 files changed, 0 insertions, 82 deletions
diff --git a/ulogd.conf b/ulogd.conf
deleted file mode 100644
index e06a3ae..0000000
--- a/ulogd.conf
+++ /dev/null
@@ -1,82 +0,0 @@
-# Example configuration for ulogd
-# $Id: ulogd.conf,v 1.7 2002/07/30 07:04:12 laforge Exp $
-#
-
-######################################################################
-# GLOBAL OPTIONS
-######################################################################
-
-# netlink multicast group (the same as the iptables --ulog-nlgroup param)
-nlgroup 1
-
-# logfile for status messages
-logfile /var/log/ulogd.log
-
-# loglevel: debug(1), info(3), notice(5), error(7) or fatal(8)
-loglevel 5
-
-# libipulog receive buffer size (should be at least the size of the
-# in-kernel buffer (ipt_ULOG.o 'nlbufsiz' parameter)
-bufsize 65535
-
-######################################################################
-# PLUGIN OPTIONS
-######################################################################
-
-# We have to configure and load all the plugins we want to use
-
-# general rules:
-# 1. specify the options FIRST, then load the plugin
-# 2. interpreter plugins have to precede output plugins
-
-
-#
-# ulogd_BASE.so - interpreter plugin for basic IPv4 header fields
-# you will always need this
-plugin /usr/local/lib/ulogd/ulogd_BASE.so
-
-
-#
-# ulogd_LOGEMU.so - simple syslog emulation target
-#
-# where to write to
-syslogfile /var/log/ulogd.syslogemu
-# do we want to fflush() the file after each write?
-syslogsync 1
-# load the plugin
-plugin /usr/local/lib/ulogd/ulogd_LOGEMU.so
-
-
-#
-# ulogd_OPRINT.so: file for packet dumping
-#
-# where to write the log
-dumpfile /var/log/ulogd.pktlog
-# load the plugin (remove the '#'if you want to enable it
-#plugin /usr/local/lib/ulogd/ulogd_OPRINT.so
-
-
-#
-# ulogd_MYSQL.so: optional logging into a MySQL database
-#
-# database information
-mysqltable ulog
-mysqlpass changeme
-mysqluser laforge
-mysqldb ulogd
-mysqlhost localhost
-# load the plugin (remove the '#' if you want to enable it)
-#plugin /usr/local/lib/ulogd/ulogd_MYSQL.so
-
-
-#
-# ulogd_PGSQL.so: optional logging into a PostgreSQL database
-#
-# database information
-pgsqltable ulog
-pgsqlpass
-pgsqluser postgres
-pgsqldb ulogd
-pgsqlhost localhost
-#load the plugin (remove the '#' if you want to enable it)
-#plugin /usr/local/lib/ulogd/ulogd_PGSQL.so