tallow
tallow copied to clipboard
iptables rules order
iptables -t filter -A INPUT -m set --match-set tallow src -j DROP
Does not apply when rules already exists as it insert at bottom.
iptables -I INPUT 1 -m set --match-set tallow src -j DROP
Fix the issue.