blob: 8620d3ca40d74cd402f2ae004be416d4475e5310 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
menu "Netfilter"
depends on ADK_TARGET_WITH_NET
config ADK_LINUX_KERNEL_NETFILTER
bool
config ADK_LINUX_KERNEL_NETFILTER_ADVANCED
bool
config ADK_LINUX_KERNEL_BRIDGE_NETFILTER
bool
config ADK_LINUX_KERNEL_NETFILTER_XTABLES
tristate
select ADK_LINUX_KERNEL_NETFILTER
select ADK_LINUX_KERNEL_NETFILTER_ADVANCED
config ADK_LINUX_KERNEL_NETFILTER_DEBUG
bool
config ADK_LINUX_KERNEL_IP_NF_MATCH_LAYER7_DEBUG
bool
config ADK_LINUX_KERNEL_IP_NF_TARGET_MIRROR
tristate
config ADK_LINUX_KERNEL_IP_NF_NAT_SNMP_BASIC
tristate
config ADK_LINUX_KERNEL_IP_NF_TARGET_DSCP
tristate
config ADK_LINUX_KERNEL_IP_NF_TARGET_MARK
tristate
config ADK_LINUX_KERNEL_IP_NF_TARGET_CLASSIFY
tristate
config ADK_LINUX_KERNEL_IP_NF_TARGET_IMQ
tristate
config ADK_LINUX_KERNEL_IP_NF_TARGET_CONNMARK
tristate
config ADK_LINUX_KERNEL_IP_NF_ARPTABLES
tristate
config ADK_LINUX_KERNEL_IP_NF_COMPAT_IPCHAINS
tristate
config ADK_LINUX_KERNEL_IP_NF_COMPAT_IPFWADM
tristate
config ADK_LINUX_KERNEL_IP6_NF_QUEUE
tristate
config ADK_LINUX_KERNEL_IP6_NF_IPTABLES
tristate
config ADK_LINUX_KERNEL_IP_ROUTE_FWMARK
bool
config ADK_LINUX_KERNEL_IP_NF_QUEUE
tristate
config ADK_LINUX_KERNEL_IP_NF_MATCH_TIME
tristate
config ADK_LINUX_KERNEL_IP_NF_MATCH_CONDITION
tristate
config ADK_LINUX_KERNEL_IP_NF_MATCH_DSCP
tristate
config ADK_LINUX_KERNEL_IP_NF_MATCH_AH_ESP
tristate
config ADK_LINUX_KERNEL_IP_NF_MATCH_LENGTH
tristate
config ADK_LINUX_KERNEL_IP_NF_MATCH_HELPER
tristate
# cannot be ADK_LINUX_KERNEL_IP_NF_MATCH_STATE because
# netfilter is built as a module -> this'll always be
# a module, too
config ADK_LINUX_KERNEL_IP_NF_MATCH_STATE
tristate
select ADK_LINUX_KERNEL_NETFILTER_XT_MATCH_STATE
config ADK_LINUX_KERNEL_NETFILTER_XT_NAT
tristate
config ADK_LINUX_KERNEL_NETFILTER_XT_MATCH_STATE
tristate
# cannot be ADK_LINUX_KERNEL_IP_NF_MATCH_CONNTRACK because
# netfilter is built as a module -> this'll always be
# a module, too
config ADK_LINUX_KERNEL_NETFILTER_XT_MATCH_CONNTRACK
tristate
config ADK_LINUX_KERNEL_NETFILTER_XT_MATCH_CONNMARK
tristate
config ADK_LINUX_KERNEL_IP_NF_MATCH_UNCLEAN
tristate
config ADK_LINUX_KERNEL_IP_NF_MATCH_STRING
tristate
menu "Core Netfilter Configuration"
source target/linux/config/Config.in.netfilter.core
endmenu
menu "IPv4: Netfilter Configuration"
source target/linux/config/Config.in.netfilter.ip4
endmenu
menu "IPv6: Netfilter Configuration"
source target/linux/config/Config.in.netfilter.ip6
endmenu
menu "Ethernet bridge firewalling"
source target/linux/config/Config.in.netfilter.ebt
endmenu
endmenu
|