You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
408 B
9 lines
408 B
iptables-translate -A OUTPUT -m statistic --mode nth --every 10 --packet 1
|
|
nft add rule ip filter OUTPUT numgen inc mod 10 1 counter
|
|
|
|
iptables-translate -A OUTPUT -m statistic --mode nth ! --every 10 --packet 5
|
|
nft add rule ip filter OUTPUT numgen inc mod 10 != 5 counter
|
|
|
|
iptables-translate -A OUTPUT -m statistic --mode random --probability 0.1
|
|
nft # -A OUTPUT -m statistic --mode random --probability 0.1
|