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
404 B
9 lines
404 B
iptables-translate -A INPUT -m limit --limit 3/m --limit-burst 3
|
|
nft add rule ip filter INPUT limit rate 3/minute burst 3 packets counter
|
|
|
|
iptables-translate -A INPUT -m limit --limit 10/s --limit-burst 5
|
|
nft add rule ip filter INPUT limit rate 10/second burst 5 packets counter
|
|
|
|
iptables-translate -A INPUT -m limit --limit 10/s --limit-burst 0
|
|
nft add rule ip filter INPUT limit rate 10/second counter
|