summaryrefslogtreecommitdiffstats
path: root/extensions/libxt_cgroup.c
diff options
context:
space:
mode:
authorLaura Garcia Liebana <nevola@gmail.com>2016-06-08 19:47:28 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2016-06-14 18:33:51 +0200
commitbd5bbc7a0fbd8e99348d108d78281b0528bad80a (patch)
tree3e0be79487aab2899151c8b8909632ed798d13f0 /extensions/libxt_cgroup.c
parent4bdf0ae602c4f53b05b8fe903981a92f8f2a65b0 (diff)
extensions: libip6t_frag: Add translation to nft
Add translation for frag to nftables. According to the --fraglen code: case O_FRAGLEN: /* * As of Linux 3.0, the kernel does not check for * fraglen at all. */ In addition, the kernel code doesn't show any reference to the flag IP6T_FRAG_LEN, so this option is deprecated and won't be translated to nft. Examples: $ sudo iptables-translate -t filter -A INPUT -m frag --fragid 100:200 -j ACCEPT nft add rule ip6 filter INPUT frag id 100-200 counter accept $ sudo iptables-translate -t filter -A INPUT -m frag --fragid 100 --fragres --fragmore -j ACCEPT nft add rule ip6 filter INPUT frag id 100 frag reserved 1 frag more-fragments 1 counter accept $ sudo iptables-translate -t filter -A INPUT -m frag ! --fragid 100:200 -j ACCEPT nft add rule ip6 filter INPUT frag id != 100-200 counter accept $ sudo iptables-translate -t filter -A INPUT -m frag --fragid 100:200 --fraglast -j ACCEPT nft add rule ip6 filter INPUT frag id 100-200 frag more-fragments 0 counter accept $ sudo iptables-translate -t filter -A INPUT -m frag --fragid 100:200 --fragfirst -j ACCEPT nft add rule ip6 filter INPUT frag id 100-200 frag frag-off 0 counter accept $ sudo iptables-translate -t filter -A INPUT -m frag --fraglast -j ACCEPT nft add rule ip6 filter INPUT frag more-fragments 0 counter accept Signed-off-by: Laura Garcia Liebana <nevola@gmail.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'extensions/libxt_cgroup.c')
0 files changed, 0 insertions, 0 deletions