Blame extensions/libxt_statistic.txlate

Packit 7b22a4
iptables-translate -A OUTPUT -m statistic --mode nth --every 10 --packet 1
Packit 7b22a4
nft add rule ip filter OUTPUT numgen inc mod 10 1 counter
Packit 7b22a4
Packit 7b22a4
iptables-translate -A OUTPUT -m statistic --mode nth ! --every 10 --packet 5
Packit 7b22a4
nft add rule ip filter OUTPUT numgen inc mod 10 != 5 counter
Packit 7b22a4
Packit 7b22a4
iptables-translate -A OUTPUT -m statistic --mode random --probability 0.1
Packit 7b22a4
nft # -A OUTPUT -m statistic --mode random --probability 0.1