Config.in.netfilter.ip6 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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 n
  7. help
  8. Connection tracking keeps a record of what packets have passed
  9. through your machine, in order to figure out how they are related
  10. into connections.
  11. This is IPv6 support on Layer 3 independent connection tracking.
  12. Layer 3 independent connection tracking is experimental scheme
  13. which generalize ip_conntrack to support other layer 3 protocols.
  14. To compile it as a module, choose M here. If unsure, say N.
  15. config ADK_KERNEL_IP6_NF_IPTABLES
  16. tristate "IP6 tables support (required for filtering)"
  17. select ADK_KERNEL_NETFILTER_XTABLES
  18. select ADK_KERNEL_IPV6
  19. default n
  20. help
  21. ip6tables is a general, extensible packet identification framework.
  22. Currently only the packet filtering and packet mangling subsystem
  23. for IPv6 use this, but connection tracking is going to follow.
  24. Say 'Y' or 'M' here if you want to use either of those.
  25. To compile it as a module, choose M here. If unsure, say N.
  26. if ADK_KERNEL_IP6_NF_IPTABLES
  27. # The simple matches.
  28. config ADK_KERNEL_IP6_NF_MATCH_AH
  29. tristate '"ah" match support'
  30. help
  31. This module allows one to match AH packets.
  32. To compile it as a module, choose M here. If unsure, say N.
  33. config ADK_KERNEL_IP6_NF_MATCH_EUI64
  34. tristate '"eui64" address check'
  35. help
  36. This module performs checking on the IPv6 source address
  37. Compares the last 64 bits with the EUI64 (delivered
  38. from the MAC address) address
  39. To compile it as a module, choose M here. If unsure, say N.
  40. config ADK_KERNEL_IP6_NF_MATCH_FRAG
  41. tristate '"frag" Fragmentation header match support'
  42. help
  43. frag matching allows you to match packets based on the fragmentation
  44. header of the packet.
  45. To compile it as a module, choose M here. If unsure, say N.
  46. config ADK_KERNEL_IP6_NF_MATCH_OPTS
  47. tristate '"hbh" hop-by-hop and "dst" opts header match support'
  48. help
  49. This allows one to match packets based on the hop-by-hop
  50. and destination options headers of a packet.
  51. To compile it as a module, choose M here. If unsure, say N.
  52. config ADK_KERNEL_IP6_NF_MATCH_IPV6HEADER
  53. tristate '"ipv6header" IPv6 Extension Headers Match'
  54. help
  55. This module allows one to match packets based upon
  56. the ipv6 extension headers.
  57. To compile it as a module, choose M here. If unsure, say N.
  58. config ADK_KERNEL_IP6_NF_MATCH_MH
  59. tristate '"mh" match support'
  60. help
  61. This module allows one to match MH packets.
  62. To compile it as a module, choose M here. If unsure, say N.
  63. config ADK_KERNEL_IP6_NF_MATCH_RT
  64. tristate '"rt" Routing header match support'
  65. help
  66. rt matching allows you to match packets based on the routing
  67. header of the packet.
  68. To compile it as a module, choose M here. If unsure, say N.
  69. # The targets
  70. config ADK_KERNEL_IP6_NF_FILTER
  71. tristate "Packet filtering"
  72. default n
  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_KERNEL_IP6_NF_TARGET_REJECT
  79. tristate "REJECT target support"
  80. depends on ADK_KERNEL_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_KERNEL_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_KERNEL_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_KERNEL_IP6_NF_IPTABLES