mirror of https://gitee.com/openkylin/linux.git
[NETFILTER]: New connection tracking is not EXPERIMENTAL anymore
Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c68b8b687f
commit
c9386cfddc
|
@ -6,8 +6,8 @@ menu "IP: Netfilter Configuration"
|
||||||
depends on INET && NETFILTER
|
depends on INET && NETFILTER
|
||||||
|
|
||||||
config NF_CONNTRACK_IPV4
|
config NF_CONNTRACK_IPV4
|
||||||
tristate "IPv4 connection tracking support (required for NAT) (EXPERIMENTAL)"
|
tristate "IPv4 connection tracking support (required for NAT)"
|
||||||
depends on EXPERIMENTAL && NF_CONNTRACK
|
depends on NF_CONNTRACK
|
||||||
---help---
|
---help---
|
||||||
Connection tracking keeps a record of what packets have passed
|
Connection tracking keeps a record of what packets have passed
|
||||||
through your machine, in order to figure out how they are related
|
through your machine, in order to figure out how they are related
|
||||||
|
|
|
@ -44,8 +44,7 @@ choice
|
||||||
depends on NF_CONNTRACK_ENABLED
|
depends on NF_CONNTRACK_ENABLED
|
||||||
|
|
||||||
config NF_CONNTRACK_SUPPORT
|
config NF_CONNTRACK_SUPPORT
|
||||||
bool "Layer 3 Independent Connection tracking (EXPERIMENTAL)"
|
bool "Layer 3 Independent Connection tracking"
|
||||||
depends on EXPERIMENTAL
|
|
||||||
help
|
help
|
||||||
Layer 3 independent connection tracking is experimental scheme
|
Layer 3 independent connection tracking is experimental scheme
|
||||||
which generalize ip_conntrack to support other layer 3 protocols.
|
which generalize ip_conntrack to support other layer 3 protocols.
|
||||||
|
@ -122,7 +121,7 @@ config NF_CONNTRACK_EVENTS
|
||||||
|
|
||||||
config NF_CT_PROTO_GRE
|
config NF_CT_PROTO_GRE
|
||||||
tristate
|
tristate
|
||||||
depends on EXPERIMENTAL && NF_CONNTRACK
|
depends on NF_CONNTRACK
|
||||||
|
|
||||||
config NF_CT_PROTO_SCTP
|
config NF_CT_PROTO_SCTP
|
||||||
tristate 'SCTP protocol connection tracking support (EXPERIMENTAL)'
|
tristate 'SCTP protocol connection tracking support (EXPERIMENTAL)'
|
||||||
|
@ -136,8 +135,8 @@ config NF_CT_PROTO_SCTP
|
||||||
Documentation/modules.txt. If unsure, say `N'.
|
Documentation/modules.txt. If unsure, say `N'.
|
||||||
|
|
||||||
config NF_CONNTRACK_AMANDA
|
config NF_CONNTRACK_AMANDA
|
||||||
tristate "Amanda backup protocol support (EXPERIMENTAL)"
|
tristate "Amanda backup protocol support"
|
||||||
depends on EXPERIMENTAL && NF_CONNTRACK
|
depends on NF_CONNTRACK
|
||||||
select TEXTSEARCH
|
select TEXTSEARCH
|
||||||
select TEXTSEARCH_KMP
|
select TEXTSEARCH_KMP
|
||||||
help
|
help
|
||||||
|
@ -151,8 +150,8 @@ config NF_CONNTRACK_AMANDA
|
||||||
To compile it as a module, choose M here. If unsure, say N.
|
To compile it as a module, choose M here. If unsure, say N.
|
||||||
|
|
||||||
config NF_CONNTRACK_FTP
|
config NF_CONNTRACK_FTP
|
||||||
tristate "FTP protocol support (EXPERIMENTAL)"
|
tristate "FTP protocol support"
|
||||||
depends on EXPERIMENTAL && NF_CONNTRACK
|
depends on NF_CONNTRACK
|
||||||
help
|
help
|
||||||
Tracking FTP connections is problematic: special helpers are
|
Tracking FTP connections is problematic: special helpers are
|
||||||
required for tracking them, and doing masquerading and other forms
|
required for tracking them, and doing masquerading and other forms
|
||||||
|
@ -184,8 +183,8 @@ config NF_CONNTRACK_H323
|
||||||
To compile it as a module, choose M here. If unsure, say N.
|
To compile it as a module, choose M here. If unsure, say N.
|
||||||
|
|
||||||
config NF_CONNTRACK_IRC
|
config NF_CONNTRACK_IRC
|
||||||
tristate "IRC protocol support (EXPERIMENTAL)"
|
tristate "IRC protocol support"
|
||||||
depends on EXPERIMENTAL && NF_CONNTRACK
|
depends on NF_CONNTRACK
|
||||||
help
|
help
|
||||||
There is a commonly-used extension to IRC called
|
There is a commonly-used extension to IRC called
|
||||||
Direct Client-to-Client Protocol (DCC). This enables users to send
|
Direct Client-to-Client Protocol (DCC). This enables users to send
|
||||||
|
@ -218,8 +217,8 @@ config NF_CONNTRACK_NETBIOS_NS
|
||||||
To compile it as a module, choose M here. If unsure, say N.
|
To compile it as a module, choose M here. If unsure, say N.
|
||||||
|
|
||||||
config NF_CONNTRACK_PPTP
|
config NF_CONNTRACK_PPTP
|
||||||
tristate "PPtP protocol support (EXPERIMENTAL)"
|
tristate "PPtP protocol support"
|
||||||
depends on EXPERIMENTAL && NF_CONNTRACK
|
depends on NF_CONNTRACK
|
||||||
select NF_CT_PROTO_GRE
|
select NF_CT_PROTO_GRE
|
||||||
help
|
help
|
||||||
This module adds support for PPTP (Point to Point Tunnelling
|
This module adds support for PPTP (Point to Point Tunnelling
|
||||||
|
@ -249,8 +248,8 @@ config NF_CONNTRACK_SIP
|
||||||
To compile it as a module, choose M here. If unsure, say N.
|
To compile it as a module, choose M here. If unsure, say N.
|
||||||
|
|
||||||
config NF_CONNTRACK_TFTP
|
config NF_CONNTRACK_TFTP
|
||||||
tristate "TFTP protocol support (EXPERIMENTAL)"
|
tristate "TFTP protocol support"
|
||||||
depends on EXPERIMENTAL && NF_CONNTRACK
|
depends on NF_CONNTRACK
|
||||||
help
|
help
|
||||||
TFTP connection tracking helper, this is required depending
|
TFTP connection tracking helper, this is required depending
|
||||||
on how restrictive your ruleset is.
|
on how restrictive your ruleset is.
|
||||||
|
|
Loading…
Reference in New Issue