diff options
author | Brett Mastbergen <bmastbergen@untangle.com> | 2018-12-11 14:09:22 -0500 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2018-12-16 00:57:20 +0100 |
commit | 2b6eab507a2679a7be70740dd7f42860c59bec9e (patch) | |
tree | 2a41161cd4553dcad6ddf6d63cd311149fe5bf1e /include | |
parent | 0c3c944d1eba362fd4f600aaee796de4b77bcaa5 (diff) | |
download | upstream-2b6eab507a2679a7be70740dd7f42860c59bec9e.tar.gz upstream-2b6eab507a2679a7be70740dd7f42860c59bec9e.tar.bz2 upstream-2b6eab507a2679a7be70740dd7f42860c59bec9e.zip |
netfilter: Add fib support for nftables
Signed-off-by: Brett Mastbergen <bmastbergen@untangle.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/netfilter.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/netfilter.mk b/include/netfilter.mk index 3a7f78a2a6..179d4ed7b9 100644 --- a/include/netfilter.mk +++ b/include/netfilter.mk @@ -371,6 +371,11 @@ $(eval $(if $(NF_KMOD),$(call nf_add,NFT_NAT6,CONFIG_NFT_REDIR_IPV6, $(P_V6)nft_ $(eval $(if $(NF_KMOD),$(call nf_add,NFT_NAT6,CONFIG_NFT_CHAIN_NAT_IPV6, $(P_V6)nft_chain_nat_ipv6),)) $(eval $(if $(NF_KMOD),$(call nf_add,NFT_NAT6,CONFIG_NFT_MASQ_IPV6, $(P_V6)nft_masq_ipv6),)) +$(eval $(if $(NF_KMOD),$(call nf_add,NFT_FIB,CONFIG_NFT_FIB, $(P_XT)nft_fib),)) +$(eval $(if $(NF_KMOD),$(call nf_add,NFT_FIB,CONFIG_NFT_FIB_INET, $(P_XT)nft_fib_inet),)) +$(eval $(if $(NF_KMOD),$(call nf_add,NFT_FIB,CONFIG_NFT_FIB_IPV4, $(P_V4)nft_fib_ipv4),)) +$(eval $(if $(NF_KMOD),$(call nf_add,NFT_FIB,CONFIG_NFT_FIB_IPV6, $(P_V6)nft_fib_ipv6),)) + # userland only IPT_BUILTIN += $(NF_IPT-y) $(NF_IPT-m) |