Config.in.netfilter.ip6 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. config ADK_KPACKAGE_KMOD_NF_CONNTRACK_IPV6
  2. tristate "IPv6 connection tracking support"
  3. select ADK_KPACKAGE_KMOD_NF_CONNTRACK
  4. select ADK_KPACKAGE_KMOD_IPV6
  5. ---help---
  6. Connection tracking keeps a record of what packets have passed
  7. through your machine, in order to figure out how they are related
  8. into connections.
  9. This is IPv6 support on Layer 3 independent connection tracking.
  10. Layer 3 independent connection tracking is experimental scheme
  11. which generalize ip_conntrack to support other layer 3 protocols.
  12. To compile it as a module, choose M here. If unsure, say N.
  13. config ADK_KPACKAGE_KMOD_IP6_NF_IPTABLES
  14. tristate "IP6 tables support (required for filtering)"
  15. select ADK_KERNEL_NETFILTER_XTABLES
  16. select ADK_KPACKAGE_KMOD_IPV6
  17. help
  18. ip6tables is a general, extensible packet identification framework.
  19. Currently only the packet filtering and packet mangling subsystem
  20. for IPv6 use this, but connection tracking is going to follow.
  21. Say 'Y' or 'M' here if you want to use either of those.
  22. To compile it as a module, choose M here. If unsure, say N.
  23. if ADK_KPACKAGE_KMOD_IP6_NF_IPTABLES
  24. # The simple matches.
  25. config ADK_KPACKAGE_KMOD_IP6_NF_MATCH_AH
  26. tristate '"ah" match support'
  27. help
  28. This module allows one to match AH packets.
  29. To compile it as a module, choose M here. If unsure, say N.
  30. config ADK_KPACKAGE_KMOD_IP6_NF_MATCH_EUI64
  31. tristate '"eui64" address check'
  32. help
  33. This module performs checking on the IPv6 source address
  34. Compares the last 64 bits with the EUI64 (delivered
  35. from the MAC address) address
  36. To compile it as a module, choose M here. If unsure, say N.
  37. config ADK_KPACKAGE_KMOD_IP6_NF_MATCH_FRAG
  38. tristate '"frag" Fragmentation header match support'
  39. help
  40. frag matching allows you to match packets based on the fragmentation
  41. header of the packet.
  42. To compile it as a module, choose M here. If unsure, say N.
  43. config ADK_KPACKAGE_KMOD_IP6_NF_MATCH_OPTS
  44. tristate '"hbh" hop-by-hop and "dst" opts header match support'
  45. help
  46. This allows one to match packets based on the hop-by-hop
  47. and destination options headers of a packet.
  48. To compile it as a module, choose M here. If unsure, say N.
  49. config ADK_KPACKAGE_KMOD_IP6_NF_MATCH_IPV6HEADER
  50. tristate '"ipv6header" IPv6 Extension Headers Match'
  51. help
  52. This module allows one to match packets based upon
  53. the ipv6 extension headers.
  54. To compile it as a module, choose M here. If unsure, say N.
  55. config ADK_KPACKAGE_KMOD_IP6_NF_MATCH_MH
  56. tristate '"mh" match support'
  57. help
  58. This module allows one to match MH packets.
  59. To compile it as a module, choose M here. If unsure, say N.
  60. config ADK_KPACKAGE_KMOD_IP6_NF_MATCH_RT
  61. tristate '"rt" Routing header match support'
  62. help
  63. rt matching allows you to match packets based on the routing
  64. header of the packet.
  65. To compile it as a module, choose M here. If unsure, say N.
  66. # The targets
  67. config ADK_KPACKAGE_KMOD_IP6_NF_TARGET_LOG
  68. tristate "LOG target support"
  69. help
  70. This option adds a `LOG' target, which allows you to create rules in
  71. any iptables table which records the packet header to the syslog.
  72. To compile it as a module, choose M here. If unsure, say N.
  73. config ADK_KPACKAGE_KMOD_IP6_NF_FILTER
  74. tristate "Packet filtering"
  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_KPACKAGE_KMOD_IP6_NF_TARGET_REJECT
  81. tristate "REJECT target support"
  82. depends on ADK_KPACKAGE_KMOD_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_KPACKAGE_KMOD_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_KPACKAGE_KMOD_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_KPACKAGE_KMOD_IP6_NF_IPTABLES