Config.in.netfilter.ip4 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. config ADK_KERNEL_NF_NAT
  2. tristate
  3. config ADK_KERNEL_NF_NAT_IPV4
  4. tristate
  5. config ADK_KERNEL_IP_NF_IPTABLES
  6. tristate 'IP tables support'
  7. select ADK_KERNEL_NETFILTER_XTABLES
  8. default n
  9. help
  10. iptables is a general, extensible packet identification framework.
  11. The packet filtering and full NAT (masquerading, port forwarding,
  12. etc) subsystems now use this: say `Y' or `M' here if you want to use
  13. either of those.
  14. config ADK_KERNEL_IP_NF_FILTER
  15. tristate 'IP Packet Filtering table support'
  16. depends on ADK_KERNEL_IP_NF_IPTABLES
  17. default n
  18. help
  19. Packet filtering defines a table `filter', which has a series of
  20. rules for simple packet filtering at local input, forwarding and
  21. local output.
  22. config ADK_KERNEL_IP_NF_NAT
  23. tristate 'IP NAT table support'
  24. select ADK_KERNEL_NETFILTER_XT_NAT
  25. select ADK_KERNEL_NF_NAT
  26. select ADK_KERNEL_NF_NAT_IPV4
  27. depends on ADK_KERNEL_IP_NF_IPTABLES
  28. default n
  29. help
  30. config ADK_KERNEL_IP_NF_MANGLE
  31. tristate 'IP Packet mangling table support'
  32. depends on ADK_KERNEL_IP_NF_IPTABLES
  33. default n
  34. help
  35. This option adds a `mangle' table to iptables: see the man page for
  36. iptables(8). This table is used for various packet alterations
  37. which can effect how the packet is routed.
  38. config ADK_KERNEL_NF_CONNTRACK_IPV4
  39. tristate 'IP connection tracking support (required for NAT)'
  40. select ADK_KERNEL_NF_CONNTRACK
  41. select ADK_KERNEL_NETFILTER_XT_MATCH_CONNTRACK
  42. default n
  43. help
  44. Connection tracking keeps a record of what packets have passed
  45. through your machine, in order to figure out how they are related
  46. into connections.
  47. config ADK_KERNEL_IP_NF_CT_ACCT
  48. bool 'Connection tracking flow accounting'
  49. depends on ADK_KERNEL_NF_CONNTRACK
  50. help
  51. If this option is enabled, the connection tracking code will
  52. keep per-flow packet and byte counters.
  53. Those counters can be used for flow-based accounting or the
  54. `connbytes' match.
  55. menu "IP target support"
  56. config ADK_KERNEL_IP_NF_TARGET_MASQUERADE
  57. tristate 'MASQUERADE target support'
  58. depends on ADK_KERNEL_NF_NAT
  59. default n
  60. help
  61. Masquerading is a special case of NAT: all outgoing connections are
  62. changed to seem to come from a particular interface's address, and
  63. if the interface goes down, those connections are lost. This is
  64. only useful for dialup accounts with dynamic IP address (ie. your IP
  65. address will be different on next dialup).
  66. config ADK_KERNEL_IP_NF_TARGET_REJECT
  67. tristate 'REJECT target support'
  68. depends on ADK_KERNEL_IP_NF_FILTER
  69. default n
  70. help
  71. The REJECT target allows a filtering rule to specify that an ICMP
  72. error should be issued in response to an incoming packet, rather
  73. than silently being dropped.
  74. config ADK_KERNEL_IP_NF_TARGET_REDIRECT
  75. tristate 'REDIRECT target support'
  76. depends on ADK_KERNEL_NF_NAT
  77. help
  78. REDIRECT is a special case of NAT: all incoming connections are
  79. mapped onto the incoming interface's address, causing the packets to
  80. come to the local machine instead of passing through. This is
  81. useful for transparent proxies.
  82. config ADK_KERNEL_IP_NF_TARGET_NETMAP
  83. tristate 'NETMAP target support'
  84. depends on ADK_KERNEL_NF_NAT
  85. help
  86. NETMAP is an implementation of static 1:1 NAT mapping of network
  87. addresses. It maps the network address part, while keeping the host
  88. address part intact. It is similar to Fast NAT, except that
  89. Netfilter's connection tracking doesn't work well with Fast NAT.
  90. config ADK_KERNEL_IP_NF_TARGET_ECN
  91. tristate 'ECN target support'
  92. depends on ADK_KERNEL_IP_NF_MANGLE
  93. help
  94. This option adds a `ECN' target, which can be used in the iptables mangle
  95. table.
  96. You can use this target to remove the ECN bits from the IPv4 header of
  97. an IP packet. This is particularly useful, if you need to work around
  98. existing ECN blackholes on the internet, but don't want to disable
  99. ECN support in general.
  100. endmenu