===== ufw (Uncomplicated Firewall) =====
ufw ist eine benutzerfreundliche Oberfläche für iptables, ideal für Einsteiger.
==== Merkmale ====
* Einfache Syntax
* Standardmäßig auf Ubuntu verfügbar
==== Wichtige Befehle ====
sudo ufw status
sudo ufw enable
sudo ufw allow 22/tcp
sudo ufw deny 80/tcp
sudo ufw disable
==== Beispiel: Freigabe von FTP, HTTP und SSH (reboot-fest) ====
sudo ufw allow 22/tcp # SSH
sudo ufw allow 80/tcp # HTTP
sudo ufw allow 21/tcp # FTP
Hinweis: ufw-Regeln sind automatisch reboot-fest.
==== Weitere Informationen ====
* [[sammlung:iptables|iptables]]
* [[sammlung:firewalld|firewalld]]