Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
# ---- UFW (Ubuntu/Debian) ---- # Check UFW status sudo ufw status sudo ufw status verbose sudo ufw status numbered # Enable / disable UFW sudo ufw enable sudo ufw disable # Set default policies sudo ufw default deny incoming sudo ufw default allow outgoing # Allow common services sudo ufw allow ssh # Port 22 sudo ufw allow http # Port 80 sudo ufw allow https # Port 443 sudo ufw allow 8080/tcp # Allow from specific IP sudo ufw allow from 192.168.1.0/24 # Allow from specific IP to specific port sudo ufw allow from 10.0.0.5 to any port 5432 # Deny a port sudo ufw deny 23/tcp # Rate-limit SSH (block after 6 connections in 30s) sudo ufw limit ssh # Delete a rule by number sudo ufw delete 3 # ---- iptables basics ---- # List all rules sudo iptables -L -v -n # Allow established connections sudo iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT # Allow SSH sudo iptables -A INPUT -p tcp --dport 22 -j ACCEPT # Drop all other inbound traffic sudo iptables -P INPUT DROP # Save rules (Debian/Ubuntu) sudo netfilter-persistent save # ---- firewalld (RHEL/Fedora) ---- sudo firewall-cmd --state sudo firewall-cmd --list-all sudo firewall-cmd --permanent --add-service=https sudo firewall-cmd --reload
Result
Open