#!/usr/bin/env bash
iptables -X; iptables -F; iptables-save; iptables -L
### Dışarıdan gelen TCP Portu i engelle ve LOG kaydı al
iptables -A INPUT -p tcp --dport 22 -j LOG --log-prefix "Port 22 Engellendi"
iptables -A INPUT -p tcp --dport 22 -j DROP
IPTables
hakkında diğer konular