Config.in.netfilter 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. menu "Netfilter (Firewall/Filtering)"
  2. config ADK_KERNEL_NETFILTER
  3. boolean
  4. default y if ADK_PACKAGE_IPTABLES
  5. default n
  6. config ADK_KERNEL_NETFILTER_ADVANCED
  7. boolean
  8. default y if ADK_PACKAGE_IPTABLES
  9. default n
  10. config ADK_KERNEL_BRIDGE_NETFILTER
  11. boolean
  12. default y if ADK_PACKAGE_EBTABLES
  13. default n
  14. config ADK_KERNEL_NETFILTER_XTABLES
  15. tristate "Netfilter Xtables support (required for ip_tables)"
  16. select ADK_KERNEL_NETFILTER
  17. select ADK_KERNEL_NETFILTER_ADVANCED
  18. default y if ADK_PACKAGE_IPTABLES
  19. default n
  20. config ADK_KERNEL_NETFILTER_DEBUG
  21. boolean
  22. default n
  23. config ADK_KERNEL_IP_NF_MATCH_LAYER7_DEBUG
  24. boolean
  25. default n
  26. config ADK_KERNEL_IP_NF_TARGET_MIRROR
  27. tristate
  28. default n
  29. config ADK_KERNEL_IP_NF_NAT_SNMP_BASIC
  30. tristate
  31. default n
  32. config ADK_KERNEL_IP_NF_TARGET_DSCP
  33. tristate
  34. default n
  35. config ADK_KERNEL_IP_NF_TARGET_MARK
  36. tristate
  37. default n
  38. config ADK_KERNEL_IP_NF_TARGET_CLASSIFY
  39. tristate
  40. default n
  41. config ADK_KERNEL_IP_NF_TARGET_IMQ
  42. tristate
  43. default n
  44. config ADK_KERNEL_IP_NF_TARGET_CONNMARK
  45. tristate
  46. default n
  47. config ADK_KERNEL_IP_NF_ARPTABLES
  48. tristate
  49. default n
  50. config ADK_KERNEL_IP_NF_COMPAT_IPCHAINS
  51. tristate
  52. default n
  53. config ADK_KERNEL_IP_NF_COMPAT_IPFWADM
  54. tristate
  55. default n
  56. config ADK_KERNEL_IP6_NF_QUEUE
  57. tristate
  58. default n
  59. config ADK_KERNEL_IP6_NF_IPTABLES
  60. tristate
  61. default n
  62. config ADK_KERNEL_IP_ROUTE_FWMARK
  63. boolean
  64. default n
  65. config ADK_KERNEL_IP_NF_QUEUE
  66. tristate
  67. default n
  68. config ADK_KERNEL_IP_NF_MATCH_TIME
  69. tristate
  70. default n
  71. config ADK_KERNEL_IP_NF_MATCH_CONDITION
  72. tristate
  73. default n
  74. config ADK_KERNEL_IP_NF_MATCH_DSCP
  75. tristate
  76. default n
  77. config ADK_KERNEL_IP_NF_MATCH_AH_ESP
  78. tristate
  79. default n
  80. config ADK_KERNEL_IP_NF_MATCH_LENGTH
  81. tristate
  82. default n
  83. config ADK_KERNEL_IP_NF_MATCH_HELPER
  84. tristate
  85. default n
  86. # cannot be ADK_KERNEL_IP_NF_MATCH_STATE because
  87. # netfilter is built as a module -> this'll always be
  88. # a module, too
  89. config ADK_KERNEL_IP_NF_MATCH_STATE
  90. tristate
  91. select ADK_KERNEL_NETFILTER_XT_MATCH_STATE
  92. default n
  93. config ADK_KERNEL_NETFILTER_XT_MATCH_STATE
  94. tristate
  95. default n
  96. # cannot be ADK_KERNEL_IP_NF_MATCH_CONNTRACK because
  97. # netfilter is built as a module -> this'll always be
  98. # a module, too
  99. config ADK_KERNEL_NETFILTER_XT_MATCH_CONNTRACK
  100. tristate
  101. default n
  102. config ADK_KERNEL_NETFILTER_XT_MATCH_CONNMARK
  103. tristate
  104. default n
  105. config ADK_KERNEL_IP_NF_MATCH_UNCLEAN
  106. tristate
  107. default n
  108. config ADK_KERNEL_IP_NF_MATCH_STRING
  109. tristate
  110. default n
  111. menu "Core Netfilter Configuration"
  112. source target/linux/config/Config.in.netfilter.core
  113. endmenu
  114. menu "IP: Netfilter Configuration"
  115. source target/linux/config/Config.in.netfilter.ip4
  116. endmenu
  117. menu "IPv6: Netfilter Configuration"
  118. source target/linux/config/Config.in.netfilter.ip6
  119. endmenu
  120. menu "Ethernet bridge firewalling"
  121. source target/linux/config/Config.in.netfilter.ebt
  122. endmenu
  123. endmenu