diff options
author | Hauke Mehrtens <hauke@openwrt.org> | 2011-04-09 23:23:46 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@openwrt.org> | 2011-04-09 23:23:46 +0000 |
commit | 37398c1ebe20c002e2673e9b1f25f2ac2474283b (patch) | |
tree | ba673a0756976b12b423e3e5a6ead96f9ee3662c /include | |
parent | 21d34442cec8f4e59273e7ac0cb91445eba77564 (diff) | |
download | master-187ad058-37398c1ebe20c002e2673e9b1f25f2ac2474283b.tar.gz master-187ad058-37398c1ebe20c002e2673e9b1f25f2ac2474283b.tar.bz2 master-187ad058-37398c1ebe20c002e2673e9b1f25f2ac2474283b.zip |
iipt-debug: create bundle of netfilter modules for debugging
Add a bundle for including commonly useful modules for IPtables debugging and development.
For now, it just contains xt_TRACE.ko
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26567 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/netfilter.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/netfilter.mk b/include/netfilter.mk index 5cc34b4814..fe468fca31 100644 --- a/include/netfilter.mk +++ b/include/netfilter.mk @@ -278,6 +278,10 @@ $(eval $(call nf_add,IPT_QUEUE,CONFIG_IP_NF_QUEUE, $(P_V4)ip_queue)) $(eval $(call nf_add,IPT_ULOG,CONFIG_IP_NF_TARGET_ULOG, $(P_V4)ipt_ULOG)) +# debugging + +$(eval $(call nf_add,IPT_DEBUG,CONFIG_NETFILTER_XT_TARGET_TRACE, $(P_XT)xt_TRACE)) + # tproxy $(eval $(call nf_add,IPT_TPROXY,CONFIG_NETFILTER_XT_MATCH_SOCKET, $(P_XT)xt_socket)) @@ -337,6 +341,7 @@ IPT_BUILTIN += $(IPT_NAT_EXTRA-y) IPT_BUILTIN += $(IPT_NATHELPER-y) IPT_BUILTIN += $(IPT_NATHELPER_EXTRA-y) IPT_BUILTIN += $(IPT_ULOG-y) +IPT_BUILTIN += $(IPT_DEBUG-y) IPT_BUILTIN += $(IPT_TPROXY-y) IPT_BUILTIN += $(EBTABLES-y) IPT_BUILTIN += $(EBTABLES_IP4-y) |