Config.in.netfilter.ip6 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. config ADK_KERNEL_NF_CONNTRACK_IPV6
  2. prompt "IPv6 connection tracking support"
  3. tristate
  4. select ADK_KERNEL_NF_CONNTRACK
  5. select ADK_KERNEL_IPV6
  6. default y if ADK_TARGET_IPTABLES
  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_KERNEL_IP6_NF_IPTABLES
  17. tristate "IP6 tables support (required for filtering)"
  18. select ADK_KERNEL_NETFILTER_XTABLES
  19. select ADK_KERNEL_IPV6
  20. default y if ADK_TARGET_IPTABLES
  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. prompt "Packet filtering"
  74. tristate
  75. default y if ADK_TARGET_IPTABLES
  76. default n
  77. help
  78. Packet filtering defines a table `filter', which has a series of
  79. rules for simple packet filtering at local input, forwarding and
  80. local output. See the man page for iptables(8).
  81. To compile it as a module, choose M here. If unsure, say N.
  82. config ADK_KERNEL_IP6_NF_TARGET_REJECT
  83. tristate "REJECT target support"
  84. depends on ADK_KERNEL_IP6_NF_FILTER
  85. help
  86. The REJECT target allows a filtering rule to specify that an ICMPv6
  87. error should be issued in response to an incoming packet, rather
  88. than silently being dropped.
  89. To compile it as a module, choose M here. If unsure, say N.
  90. config ADK_KERNEL_IP6_NF_MANGLE
  91. tristate "Packet mangling"
  92. help
  93. This option adds a `mangle' table to iptables: see the man page for
  94. iptables(8). This table is used for various packet alterations
  95. which can effect how the packet is routed.
  96. To compile it as a module, choose M here. If unsure, say N.
  97. config ADK_KERNEL_IP6_NF_RAW
  98. tristate 'raw table support (required for TRACE)'
  99. help
  100. This option adds a `raw' table to ip6tables. This table is the very
  101. first in the netfilter framework and hooks in at the PREROUTING
  102. and OUTPUT chains.
  103. If you want to compile it as a module, say M here and read
  104. <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
  105. endif # ADK_KERNEL_IP6_NF_IPTABLES