Config.in.netfilter.ip6 4.4 KB

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