Firewall Rate-Limit
Membatasi jumlah koneksi SSH dalam waktu tertentu dapat mencegah serangan brute force
Contoh konfigurasi dengan UFW:
sudo ufw limit ssh
Atau dengan iptables:
sudo iptables -A INPUT -p tcp --dport 2222 -m limit --limit 5/min -j ACCEPT
Last updated
Was this helpful?