Config.in.netfilter.ip6 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. config ADK_KPACKAGE_KMOD_NF_CONNTRACK_IPV6
  2. tristate "IPv6 connection tracking support"
  3. select ADK_KPACKAGE_KMOD_NF_CONNTRACK
  4. ---help---
  5. Connection tracking keeps a record of what packets have passed
  6. through your machine, in order to figure out how they are related
  7. into connections.
  8. This is IPv6 support on Layer 3 independent connection tracking.
  9. Layer 3 independent connection tracking is experimental scheme
  10. which generalize ip_conntrack to support other layer 3 protocols.
  11. To compile it as a module, choose M here. If unsure, say N.
  12. config ADK_KPACKAGE_KMOD_IP6_NF_IPTABLES
  13. tristate "IP6 tables support (required for filtering)"
  14. select ADK_KERNEL_NETFILTER_XTABLES
  15. help
  16. ip6tables is a general, extensible packet identification framework.
  17. Currently only the packet filtering and packet mangling subsystem
  18. for IPv6 use this, but connection tracking is going to follow.
  19. Say 'Y' or 'M' here if you want to use either of those.
  20. To compile it as a module, choose M here. If unsure, say N.
  21. if ADK_KPACKAGE_KMOD_IP6_NF_IPTABLES
  22. # The simple matches.
  23. config ADK_KPACKAGE_KMOD_IP6_NF_MATCH_AH
  24. tristate '"ah" match support'
  25. help
  26. This module allows one to match AH packets.
  27. To compile it as a module, choose M here. If unsure, say N.
  28. config ADK_KPACKAGE_KMOD_IP6_NF_MATCH_EUI64
  29. tristate '"eui64" address check'
  30. help
  31. This module performs checking on the IPv6 source address
  32. Compares the last 64 bits with the EUI64 (delivered
  33. from the MAC address) address
  34. To compile it as a module, choose M here. If unsure, say N.
  35. config ADK_KPACKAGE_KMOD_IP6_NF_MATCH_FRAG
  36. tristate '"frag" Fragmentation header match support'
  37. help
  38. frag matching allows you to match packets based on the fragmentation
  39. header of the packet.
  40. To compile it as a module, choose M here. If unsure, say N.
  41. config ADK_KPACKAGE_KMOD_IP6_NF_MATCH_OPTS
  42. tristate '"hbh" hop-by-hop and "dst" opts header match support'
  43. help
  44. This allows one to match packets based on the hop-by-hop
  45. and destination options headers of a packet.
  46. To compile it as a module, choose M here. If unsure, say N.
  47. config ADK_KPACKAGE_KMOD_IP6_NF_MATCH_IPV6HEADER
  48. tristate '"ipv6header" IPv6 Extension Headers Match'
  49. help
  50. This module allows one to match packets based upon
  51. the ipv6 extension headers.
  52. To compile it as a module, choose M here. If unsure, say N.
  53. config ADK_KPACKAGE_KMOD_IP6_NF_MATCH_MH
  54. tristate '"mh" match support'
  55. help
  56. This module allows one to match MH packets.
  57. To compile it as a module, choose M here. If unsure, say N.
  58. config ADK_KPACKAGE_KMOD_IP6_NF_MATCH_RT
  59. tristate '"rt" Routing header match support'
  60. help
  61. rt matching allows you to match packets based on the routing
  62. header of the packet.
  63. To compile it as a module, choose M here. If unsure, say N.
  64. # The targets
  65. config ADK_KPACKAGE_KMOD_IP6_NF_TARGET_LOG
  66. tristate "LOG target support"
  67. help
  68. This option adds a `LOG' target, which allows you to create rules in
  69. any iptables table which records the packet header to the syslog.
  70. To compile it as a module, choose M here. If unsure, say N.
  71. config ADK_KPACKAGE_KMOD_IP6_NF_FILTER
  72. tristate "Packet filtering"
  73. help
  74. Packet filtering defines a table `filter', which has a series of
  75. rules for simple packet filtering at local input, forwarding and
  76. local output. See the man page for iptables(8).
  77. To compile it as a module, choose M here. If unsure, say N.
  78. config ADK_KPACKAGE_KMOD_IP6_NF_TARGET_REJECT
  79. tristate "REJECT target support"
  80. depends on ADK_KPACKAGE_KMOD_IP6_NF_FILTER
  81. help
  82. The REJECT target allows a filtering rule to specify that an ICMPv6
  83. error should be issued in response to an incoming packet, rather
  84. than silently being dropped.
  85. To compile it as a module, choose M here. If unsure, say N.
  86. config ADK_KPACKAGE_KMOD_IP6_NF_MANGLE
  87. tristate "Packet mangling"
  88. help
  89. This option adds a `mangle' table to iptables: see the man page for
  90. iptables(8). This table is used for various packet alterations
  91. which can effect how the packet is routed.
  92. To compile it as a module, choose M here. If unsure, say N.
  93. config ADK_KPACKAGE_KMOD_IP6_NF_RAW
  94. tristate 'raw table support (required for TRACE)'
  95. help
  96. This option adds a `raw' table to ip6tables. This table is the very
  97. first in the netfilter framework and hooks in at the PREROUTING
  98. and OUTPUT chains.
  99. If you want to compile it as a module, say M here and read
  100. <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
  101. endif # ADK_KPACKAGE_KMOD_IP6_NF_IPTABLES