summaryrefslogtreecommitdiffstats
path: root/ulogd/ulogd.conf
diff options
context:
space:
mode:
authorlaforge <laforge>2000-11-20 11:43:22 +0000
committerlaforge <laforge>2000-11-20 11:43:22 +0000
commitc7d5ddfadc507d1cc9811229f938abe8c8004c0d (patch)
tree12125bd631ef4162c4e5eddce2e2c9929c6c5b9f /ulogd/ulogd.conf
parent58ee76c3d9db7c2b12f8b504415917afdd6abec0 (diff)
huge reorganization for 0.9
- added hashtables everywhere - no more dynamic allocation for each packet - mysql output plugin - more keys in ulogd_BASE - moved libipulog into ulogd directory - introduced autoconf
Diffstat (limited to 'ulogd/ulogd.conf')
-rw-r--r--ulogd/ulogd.conf20
1 files changed, 14 insertions, 6 deletions
diff --git a/ulogd/ulogd.conf b/ulogd/ulogd.conf
index 27f0394..f27c990 100644
--- a/ulogd/ulogd.conf
+++ b/ulogd/ulogd.conf
@@ -1,9 +1,17 @@
-# which netlink multicast group ulogd should listen to
+# netlink multicast group (the same as the iptables --ulog-nlgroup param)
nlgroup 32
-
-# logfile
+# logfile for status messages
logfile /var/log/ulogd.log
-
-# dumpfile for ulogd_OPRINT.so
+# loglevel: notice, warnings, error and fatal
+loglevel 5
+# ulogd_OPRINT.so: file for packet dumping
dumpfile /var/log/ulogd.pktlog
-
+# ulogd_MYSQL.so: database information
+mysqltable ulog
+mysqlpass hotline
+mysqluser laforge
+mysqldb ulogd
+mysqlhost localhost
+# plugins: first load BASE interpreter, then syslog emulation
+plugin /usr/local/lib/ulogd/ulogd_BASE.so
+plugin /usr/local/lib/ulogd/ulogd_LOGEMU.so