netfilter.mk 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  1. #
  2. # Copyright (C) 2006-2010 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. NF_MENU:=Netfilter Extensions
  8. NF_KMOD:=1
  9. include $(INCLUDE_DIR)/netfilter.mk
  10. define KernelPackage/ipt-core
  11. SUBMENU:=$(NF_MENU)
  12. TITLE:=Netfilter core
  13. KCONFIG:= \
  14. CONFIG_NETFILTER=y \
  15. CONFIG_NETFILTER_ADVANCED=y \
  16. $(KCONFIG_IPT_CORE)
  17. FILES:=$(foreach mod,$(IPT_CORE-m),$(LINUX_DIR)/net/$(mod).ko)
  18. AUTOLOAD:=$(call AutoLoad,40,$(notdir $(IPT_CORE-m)))
  19. endef
  20. define KernelPackage/ipt-core/description
  21. Netfilter core kernel modules
  22. Includes:
  23. - comment
  24. - limit
  25. - LOG
  26. - mac
  27. - multiport
  28. - REJECT
  29. - TCPMSS
  30. endef
  31. $(eval $(call KernelPackage,ipt-core))
  32. define AddDepends/ipt
  33. SUBMENU:=$(NF_MENU)
  34. DEPENDS+= kmod-ipt-core $(1)
  35. endef
  36. define KernelPackage/ipt-conntrack
  37. TITLE:=Basic connection tracking modules
  38. KCONFIG:=$(KCONFIG_IPT_CONNTRACK)
  39. FILES:=$(foreach mod,$(IPT_CONNTRACK-m),$(LINUX_DIR)/net/$(mod).ko)
  40. AUTOLOAD:=$(call AutoLoad,41,$(notdir $(IPT_CONNTRACK-m)))
  41. $(call AddDepends/ipt)
  42. endef
  43. define KernelPackage/ipt-conntrack/description
  44. Netfilter (IPv4) kernel modules for connection tracking
  45. Includes:
  46. - conntrack
  47. - defrag
  48. - iptables_raw
  49. - NOTRACK
  50. - state
  51. endef
  52. $(eval $(call KernelPackage,ipt-conntrack))
  53. define KernelPackage/ipt-conntrack-extra
  54. TITLE:=Extra connection tracking modules
  55. KCONFIG:=$(KCONFIG_IPT_CONNTRACK_EXTRA)
  56. FILES:=$(foreach mod,$(IPT_CONNTRACK_EXTRA-m),$(LINUX_DIR)/net/$(mod).ko)
  57. AUTOLOAD:=$(call AutoLoad,42,$(notdir $(IPT_CONNTRACK_EXTRA-m)))
  58. $(call AddDepends/ipt,+kmod-ipt-conntrack)
  59. endef
  60. define KernelPackage/ipt-conntrack-extra/description
  61. Netfilter (IPv4) extra kernel modules for connection tracking
  62. Includes:
  63. - connbytes
  64. - connmark/CONNMARK
  65. - conntrack
  66. - helper
  67. - recent
  68. endef
  69. $(eval $(call KernelPackage,ipt-conntrack-extra))
  70. define KernelPackage/ipt-filter
  71. TITLE:=Modules for packet content inspection
  72. KCONFIG:=$(KCONFIG_IPT_FILTER)
  73. FILES:=$(foreach mod,$(IPT_FILTER-m),$(LINUX_DIR)/net/$(mod).ko)
  74. AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_FILTER-m)))
  75. $(call AddDepends/ipt,+kmod-lib-textsearch)
  76. endef
  77. define KernelPackage/ipt-filter/description
  78. Netfilter (IPv4) kernel modules for packet content inspection
  79. Includes:
  80. - layer7
  81. - string
  82. endef
  83. $(eval $(call KernelPackage,ipt-filter))
  84. define KernelPackage/ipt-ipopt
  85. TITLE:=Modules for matching/changing IP packet options
  86. KCONFIG:=$(KCONFIG_IPT_IPOPT)
  87. FILES:=$(foreach mod,$(IPT_IPOPT-m),$(LINUX_DIR)/net/$(mod).ko)
  88. AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_IPOPT-m)))
  89. $(call AddDepends/ipt)
  90. endef
  91. define KernelPackage/ipt-ipopt/description
  92. Netfilter (IPv4) modules for matching/changing IP packet options
  93. Includes:
  94. - CLASSIFY
  95. - dscp/DSCP
  96. - ecn/ECN
  97. - hl/HL
  98. - length
  99. - mark/MARK
  100. - statistic
  101. - tcpmss
  102. - time
  103. - ttl/TTL
  104. - unclean
  105. endef
  106. $(eval $(call KernelPackage,ipt-ipopt))
  107. define KernelPackage/ipt-ipsec
  108. TITLE:=Modules for matching IPSec packets
  109. KCONFIG:=$(KCONFIG_IPT_IPSEC)
  110. FILES:=$(foreach mod,$(IPT_IPSEC-m),$(LINUX_DIR)/net/$(mod).ko)
  111. AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_IPSEC-m)))
  112. $(call AddDepends/ipt)
  113. endef
  114. define KernelPackage/ipt-ipsec/description
  115. Netfilter (IPv4) modules for matching IPSec packets
  116. Includes:
  117. - ah
  118. - esp
  119. - policy
  120. endef
  121. $(eval $(call KernelPackage,ipt-ipsec))
  122. define KernelPackage/ipt-nat
  123. TITLE:=Basic NAT targets
  124. KCONFIG:=$(KCONFIG_IPT_NAT)
  125. FILES:=$(foreach mod,$(IPT_NAT-m),$(LINUX_DIR)/net/$(mod).ko)
  126. AUTOLOAD:=$(call AutoLoad,42,$(notdir $(IPT_NAT-m)))
  127. $(call AddDepends/ipt,+kmod-ipt-conntrack)
  128. endef
  129. define KernelPackage/ipt-nat/description
  130. Netfilter (IPv4) kernel modules for basic NAT targets
  131. Includes:
  132. - MASQUERADE
  133. endef
  134. $(eval $(call KernelPackage,ipt-nat))
  135. define KernelPackage/ipt-nat-extra
  136. TITLE:=Extra NAT targets
  137. KCONFIG:=$(KCONFIG_IPT_NAT_EXTRA)
  138. FILES:=$(foreach mod,$(IPT_NAT_EXTRA-m),$(LINUX_DIR)/net/$(mod).ko)
  139. AUTOLOAD:=$(call AutoLoad,43,$(notdir $(IPT_NAT_EXTRA-m)))
  140. $(call AddDepends/ipt,+kmod-ipt-nat)
  141. endef
  142. define KernelPackage/ipt-nat-extra/description
  143. Netfilter (IPv4) kernel modules for extra NAT targets
  144. Includes:
  145. - NETMAP
  146. - REDIRECT
  147. endef
  148. $(eval $(call KernelPackage,ipt-nat-extra))
  149. define KernelPackage/ipt-nathelper
  150. TITLE:=Basic Conntrack and NAT helpers
  151. KCONFIG:=$(KCONFIG_IPT_NATHELPER)
  152. FILES:=$(foreach mod,$(IPT_NATHELPER-m),$(LINUX_DIR)/net/$(mod).ko)
  153. AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_NATHELPER-m)))
  154. $(call AddDepends/ipt,+kmod-ipt-nat)
  155. endef
  156. define KernelPackage/ipt-nathelper/description
  157. Default Netfilter (IPv4) Conntrack and NAT helpers
  158. Includes:
  159. - ftp
  160. - irc
  161. - tftp
  162. endef
  163. $(eval $(call KernelPackage,ipt-nathelper))
  164. define KernelPackage/ipt-nathelper-extra
  165. TITLE:=Extra Conntrack and NAT helpers
  166. KCONFIG:=$(KCONFIG_IPT_NATHELPER_EXTRA)
  167. FILES:=$(foreach mod,$(IPT_NATHELPER_EXTRA-m),$(LINUX_DIR)/net/$(mod).ko)
  168. AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_NATHELPER_EXTRA-m)))
  169. $(call AddDepends/ipt,+kmod-ipt-nat +kmod-lib-textsearch)
  170. endef
  171. define KernelPackage/ipt-nathelper-extra/description
  172. Extra Netfilter (IPv4) Conntrack and NAT helpers
  173. Includes:
  174. - amanda
  175. - h323
  176. - mms
  177. - pptp
  178. - proto_gre
  179. - sip
  180. - snmp_basic
  181. - broadcast
  182. endef
  183. $(eval $(call KernelPackage,ipt-nathelper-extra))
  184. define KernelPackage/ipt-queue
  185. TITLE:=Module for user-space packet queueing
  186. KCONFIG:=$(KCONFIG_IPT_QUEUE)
  187. DEPENDS:=@!LINUX_3_6
  188. FILES:=$(foreach mod,$(IPT_QUEUE-m),$(LINUX_DIR)/net/$(mod).ko)
  189. AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_QUEUE-m)))
  190. $(call AddDepends/ipt)
  191. endef
  192. define KernelPackage/ipt-queue/description
  193. Netfilter (IPv4) module for user-space packet queueing
  194. Includes:
  195. - QUEUE
  196. endef
  197. $(eval $(call KernelPackage,ipt-queue))
  198. define KernelPackage/ipt-ulog
  199. TITLE:=Module for user-space packet logging
  200. KCONFIG:=$(KCONFIG_IPT_ULOG)
  201. FILES:=$(foreach mod,$(IPT_ULOG-m),$(LINUX_DIR)/net/$(mod).ko)
  202. AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_ULOG-m)))
  203. $(call AddDepends/ipt)
  204. endef
  205. define KernelPackage/ipt-ulog/description
  206. Netfilter (IPv4) module for user-space packet logging
  207. Includes:
  208. - ULOG
  209. endef
  210. $(eval $(call KernelPackage,ipt-ulog))
  211. define KernelPackage/ipt-debug
  212. TITLE:=Module for debugging/development
  213. KCONFIG:=$(KCONFIG_IPT_DEBUG)
  214. DEFAULT:=n
  215. FILES:=$(foreach mod,$(IPT_DEBUG-m),$(LINUX_DIR)/net/$(mod).ko)
  216. AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_DEBUG-m)))
  217. $(call AddDepends/ipt)
  218. endef
  219. define KernelPackage/ipt-debug/description
  220. Netfilter modules for debugging/development of the firewall
  221. Includes:
  222. - TRACE
  223. endef
  224. $(eval $(call KernelPackage,ipt-debug))
  225. define KernelPackage/ipt-led
  226. TITLE:=Module to trigger a LED with a Netfilter rule
  227. KCONFIG:=$(KCONFIG_IPT_LED)
  228. FILES:=$(foreach mod,$(IPT_LED-m),$(LINUX_DIR)/net/$(mod).ko)
  229. AUTOLOAD:=$(call AutoLoad,61,$(notdir $(IPT_LED-m)))
  230. $(call AddDepends/ipt)
  231. endef
  232. define KernelPackage/ipt-led/description
  233. Netfilter target to trigger a LED when a network packet is matched.
  234. endef
  235. $(eval $(call KernelPackage,ipt-led))
  236. define KernelPackage/ipt-tproxy
  237. TITLE:=Transparent proxying support
  238. DEPENDS+=+IPV6:kmod-ipv6
  239. KCONFIG:= \
  240. CONFIG_NETFILTER_TPROXY \
  241. CONFIG_NETFILTER_XT_MATCH_SOCKET \
  242. CONFIG_NETFILTER_XT_TARGET_TPROXY
  243. FILES:= \
  244. $(LINUX_DIR)/net/netfilter/nf_tproxy_core.ko \
  245. $(foreach mod,$(IPT_TPROXY-m),$(LINUX_DIR)/net/$(mod).ko)
  246. AUTOLOAD:=$(call AutoLoad,50,$(notdir nf_tproxy_core $(IPT_TPROXY-m)))
  247. $(call AddDepends/ipt)
  248. endef
  249. define KernelPackage/ipt-tproxy/description
  250. Kernel modules for Transparent Proxying
  251. endef
  252. $(eval $(call KernelPackage,ipt-tproxy))
  253. define KernelPackage/ipt-tee
  254. TITLE:=TEE support
  255. KCONFIG:= \
  256. CONFIG_NETFILTER_XT_TARGET_TEE
  257. FILES:= \
  258. $(LINUX_DIR)/net/netfilter/xt_TEE.ko \
  259. $(foreach mod,$(IPT_TEE-m),$(LINUX_DIR)/net/$(mod).ko)
  260. AUTOLOAD:=$(call AutoLoad,45,$(notdir nf_tee $(IPT_TEE-m)))
  261. $(call AddDepends/ipt)
  262. endef
  263. define KernelPackage/ipt-tee/description
  264. Kernel modules for TEE
  265. endef
  266. $(eval $(call KernelPackage,ipt-tee))
  267. define KernelPackage/ipt-u32
  268. TITLE:=U32 support
  269. KCONFIG:= \
  270. CONFIG_NETFILTER_XT_MATCH_U32
  271. FILES:= \
  272. $(LINUX_DIR)/net/netfilter/xt_u32.ko \
  273. $(foreach mod,$(IPT_U32-m),$(LINUX_DIR)/net/$(mod).ko)
  274. AUTOLOAD:=$(call AutoLoad,45,$(notdir nf_tee $(IPT_U32-m)))
  275. $(call AddDepends/ipt)
  276. endef
  277. define KernelPackage/ipt-u32/description
  278. Kernel modules for U32
  279. endef
  280. $(eval $(call KernelPackage,ipt-u32))
  281. define KernelPackage/ipt-iprange
  282. TITLE:=Module for matching ip ranges
  283. KCONFIG:=$(KCONFIG_IPT_IPRANGE)
  284. FILES:=$(foreach mod,$(IPT_IPRANGE-m),$(LINUX_DIR)/net/$(mod).ko)
  285. AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_IPRANGE-m)))
  286. $(call AddDepends/ipt)
  287. endef
  288. define KernelPackage/ipt-iprange/description
  289. Netfilter (IPv4) module for matching ip ranges
  290. Includes:
  291. - iprange
  292. endef
  293. $(eval $(call KernelPackage,ipt-iprange))
  294. define KernelPackage/ipt-extra
  295. TITLE:=Extra modules
  296. KCONFIG:=$(KCONFIG_IPT_EXTRA)
  297. FILES:=$(foreach mod,$(IPT_EXTRA-m),$(LINUX_DIR)/net/$(mod).ko)
  298. AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_EXTRA-m)))
  299. $(call AddDepends/ipt)
  300. endef
  301. define KernelPackage/ipt-extra/description
  302. Other Netfilter (IPv4) kernel modules
  303. Includes:
  304. - addrtype
  305. - owner
  306. - physdev (if bridge support was enabled in kernel)
  307. - pkttype
  308. - quota
  309. endef
  310. $(eval $(call KernelPackage,ipt-extra))
  311. define KernelPackage/ip6tables
  312. SUBMENU:=$(NF_MENU)
  313. TITLE:=IPv6 modules
  314. DEPENDS:=+kmod-ipv6
  315. KCONFIG:=$(KCONFIG_IPT_IPV6)
  316. FILES:=$(foreach mod,$(IPT_IPV6-m),$(LINUX_DIR)/net/$(mod).ko)
  317. AUTOLOAD:=$(call AutoLoad,49,$(notdir $(IPT_IPV6-m)))
  318. endef
  319. define KernelPackage/ip6tables/description
  320. Netfilter IPv6 firewalling support
  321. endef
  322. $(eval $(call KernelPackage,ip6tables))
  323. define KernelPackage/arptables
  324. SUBMENU:=$(NF_MENU)
  325. TITLE:=ARP firewalling modules
  326. FILES:=$(LINUX_DIR)/net/ipv4/netfilter/arp*.ko
  327. KCONFIG:=CONFIG_IP_NF_ARPTABLES \
  328. CONFIG_IP_NF_ARPFILTER \
  329. CONFIG_IP_NF_ARP_MANGLE
  330. AUTOLOAD:=$(call AutoLoad,49,$(notdir $(patsubst %.ko,%,$(wildcard $(LINUX_DIR)/net/ipv4/netfilter/arp*.ko))))
  331. endef
  332. define KernelPackage/arptables/description
  333. Kernel modules for ARP firewalling
  334. endef
  335. $(eval $(call KernelPackage,arptables))
  336. define KernelPackage/ebtables
  337. SUBMENU:=$(NF_MENU)
  338. TITLE:=Bridge firewalling modules
  339. FILES:=$(foreach mod,$(EBTABLES-m),$(LINUX_DIR)/net/$(mod).ko)
  340. KCONFIG:=CONFIG_BRIDGE_NETFILTER=y \
  341. $(KCONFIG_EBTABLES)
  342. AUTOLOAD:=$(call AutoLoad,49,$(notdir $(EBTABLES-m)))
  343. endef
  344. define KernelPackage/ebtables/description
  345. ebtables is a general, extensible frame/packet identification
  346. framework. It provides you to do Ethernet
  347. filtering/NAT/brouting on the Ethernet bridge.
  348. endef
  349. $(eval $(call KernelPackage,ebtables))
  350. define AddDepends/ebtables
  351. SUBMENU:=$(NF_MENU)
  352. DEPENDS+=kmod-ebtables $(1)
  353. endef
  354. define KernelPackage/ebtables-ipv4
  355. TITLE:=ebtables: IPv4 support
  356. FILES:=$(foreach mod,$(EBTABLES_IP4-m),$(LINUX_DIR)/net/$(mod).ko)
  357. KCONFIG:=$(KCONFIG_EBTABLES_IP4)
  358. AUTOLOAD:=$(call AutoLoad,49,$(notdir $(EBTABLES_IP4-m)))
  359. $(call AddDepends/ebtables)
  360. endef
  361. define KernelPackage/ebtables-ipv4/description
  362. This option adds the IPv4 support to ebtables, which allows basic
  363. IPv4 header field filtering, ARP filtering as well as SNAT, DNAT targets.
  364. endef
  365. $(eval $(call KernelPackage,ebtables-ipv4))
  366. define KernelPackage/ebtables-ipv6
  367. TITLE:=ebtables: IPv6 support
  368. FILES:=$(foreach mod,$(EBTABLES_IP6-m),$(LINUX_DIR)/net/$(mod).ko)
  369. KCONFIG:=$(KCONFIG_EBTABLES_IP6)
  370. AUTOLOAD:=$(call AutoLoad,49,$(notdir $(EBTABLES_IP6-m)))
  371. $(call AddDepends/ebtables)
  372. endef
  373. define KernelPackage/ebtables-ipv6/description
  374. This option adds the IPv6 support to ebtables, which allows basic
  375. IPv6 header field filtering and target support.
  376. endef
  377. $(eval $(call KernelPackage,ebtables-ipv6))
  378. define KernelPackage/ebtables-watchers
  379. TITLE:=ebtables: watchers support
  380. FILES:=$(foreach mod,$(EBTABLES_WATCHERS-m),$(LINUX_DIR)/net/$(mod).ko)
  381. KCONFIG:=$(KCONFIG_EBTABLES_WATCHERS)
  382. AUTOLOAD:=$(call AutoLoad,49,$(notdir $(EBTABLES_WATCHERS-m)))
  383. $(call AddDepends/ebtables)
  384. endef
  385. define KernelPackage/ebtables-watchers/description
  386. This option adds the log watchers, that you can use in any rule
  387. in any ebtables table.
  388. endef
  389. $(eval $(call KernelPackage,ebtables-watchers))
  390. define KernelPackage/nfnetlink
  391. SUBMENU:=$(NF_MENU)
  392. TITLE:=Netlink-based userspace interface
  393. DEPENDS:=+kmod-ipt-core
  394. FILES:=$(LINUX_DIR)/net/netfilter/nfnetlink.ko
  395. KCONFIG:=CONFIG_NETFILTER_NETLINK
  396. AUTOLOAD:=$(call AutoLoad,48,nfnetlink)
  397. endef
  398. define KernelPackage/nfnetlink/description
  399. Kernel modules support for a netlink-based userspace interface
  400. endef
  401. $(eval $(call KernelPackage,nfnetlink))
  402. define AddDepends/nfnetlink
  403. SUBMENU:=$(NF_MENU)
  404. DEPENDS+=+kmod-nfnetlink $(1)
  405. endef
  406. define KernelPackage/nfnetlink-log
  407. TITLE:=Netfilter LOG over NFNETLINK interface
  408. FILES:=$(LINUX_DIR)/net/netfilter/nfnetlink_log.ko
  409. KCONFIG:=CONFIG_NETFILTER_NETLINK_LOG
  410. AUTOLOAD:=$(call AutoLoad,48,nfnetlink_log)
  411. $(call AddDepends/nfnetlink)
  412. endef
  413. define KernelPackage/nfnetlink-log/description
  414. Kernel modules support for logging packets via NFNETLINK
  415. endef
  416. $(eval $(call KernelPackage,nfnetlink-log))
  417. define KernelPackage/nfnetlink-queue
  418. TITLE:=Netfilter QUEUE over NFNETLINK interface
  419. FILES:=$(LINUX_DIR)/net/netfilter/nfnetlink_queue.ko
  420. KCONFIG:=CONFIG_NETFILTER_NETLINK_QUEUE
  421. AUTOLOAD:=$(call AutoLoad,48,nfnetlink_queue)
  422. $(call AddDepends/nfnetlink)
  423. endef
  424. define KernelPackage/nfnetlink-queue/description
  425. Kernel modules support for queueing packets via NFNETLINK
  426. endef
  427. $(eval $(call KernelPackage,nfnetlink-queue))
  428. define KernelPackage/nf-conntrack-netlink
  429. TITLE:=Connection tracking netlink interface
  430. FILES:=$(LINUX_DIR)/net/netfilter/nf_conntrack_netlink.ko
  431. KCONFIG:=CONFIG_NF_CT_NETLINK
  432. AUTOLOAD:=$(call AutoLoad,49,nf_conntrack_netlink)
  433. $(call AddDepends/nfnetlink,+kmod-ipt-conntrack)
  434. endef
  435. define KernelPackage/nf-conntrack-netlink/description
  436. Kernel modules support for a netlink-based connection tracking
  437. userspace interface
  438. endef
  439. $(eval $(call KernelPackage,nf-conntrack-netlink))
  440. define KernelPackage/ipt-hashlimit
  441. SUBMENU:=$(NF_MENU)
  442. TITLE:=Netfilter hashlimit match
  443. KCONFIG:=$(KCONFIG_IPT_HASHLIMIT)
  444. FILES:=$(LINUX_DIR)/net/netfilter/xt_hashlimit.ko
  445. AUTOLOAD:=$(call AutoLoad,50,xt_hashlimit)
  446. $(call KernelPackage/ipt)
  447. endef
  448. define KernelPackage/ipt-hashlimit/description
  449. Kernel modules support for the hashlimit bucket match module
  450. endef
  451. $(eval $(call KernelPackage,ipt-hashlimit))