iptables
Bir kara liste kuralı oluşturmak için aşağıdaki komutları çalıştırdım ancak yanlış bağlantı noktasını kullandım:
iptables -A INPUT -p tcp --dport 22 -m state --state NEW -m recent --set --name SSH
iptables -A INPUT -p tcp --dport 22 -m state --state NEW -j SSH_WHITELIST
iptables -A INPUT -p tcp --dport 22 -m state --state NEW -m recent --update --seconds 60 --hitcount 4 --rttl --name SSH -j ULOG --ulog-prefix SSH_brute_force
iptables -A INPUT -p tcp --dport 22 -m state --state NEW -m recent --update --seconds 60 --hitcount 4 --rttl --name SSH -j DROP
Yukarıdakileri nasıl geri alabilirim ve sonra farklı bir bağlantı noktası için nasıl yeniden yapabilirim?