Config.in.netfilter.ip6 4.3 KB

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