aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netfilter/Kbuild
diff options
context:
space:
mode:
authorThomas Graf <tgraf@infradead.org>2011-01-16 18:10:28 +0100
committerPatrick McHardy <kaber@trash.net>2011-01-16 18:10:28 +0100
commit43f393caec0362abe03c72799d3f342af3973070 (patch)
tree7ff979877f3d8e725709d7455ef4f977df605d78 /include/linux/netfilter/Kbuild
parentnetfilter: nf_conntrack: use is_vmalloc_addr() (diff)
downloadlinux-dev-43f393caec0362abe03c72799d3f342af3973070.tar.xz
linux-dev-43f393caec0362abe03c72799d3f342af3973070.zip
netfilter: audit target to record accepted/dropped packets
This patch adds a new netfilter target which creates audit records for packets traversing a certain chain. It can be used to record packets which are rejected administraively as follows: -N AUDIT_DROP -A AUDIT_DROP -j AUDIT --type DROP -A AUDIT_DROP -j DROP a rule which would typically drop or reject a packet would then invoke the new chain to record packets before dropping them. -j AUDIT_DROP The module is protocol independant and works for iptables, ip6tables and ebtables. The following information is logged: - netfilter hook - packet length - incomming/outgoing interface - MAC src/dst/proto for ethernet packets - src/dst/protocol address for IPv4/IPv6 - src/dst port for TCP/UDP/UDPLITE - icmp type/code Cc: Patrick McHardy <kaber@trash.net> Cc: Eric Paris <eparis@parisplace.org> Cc: Al Viro <viro@ZenIV.linux.org.uk> Signed-off-by: Thomas Graf <tgraf@redhat.com> Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'include/linux/netfilter/Kbuild')
-rw-r--r--include/linux/netfilter/Kbuild1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/netfilter/Kbuild b/include/linux/netfilter/Kbuild
index 9d40effe7ca7..9f11fbc377e2 100644
--- a/include/linux/netfilter/Kbuild
+++ b/include/linux/netfilter/Kbuild
@@ -9,6 +9,7 @@ header-y += nfnetlink_conntrack.h
header-y += nfnetlink_log.h
header-y += nfnetlink_queue.h
header-y += x_tables.h
+header-y += xt_AUDIT.h
header-y += xt_CHECKSUM.h
header-y += xt_CLASSIFY.h
header-y += xt_CONNMARK.h