Configure ufw iptables firewall rules for common services
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill firewall-configuration --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Firewall Configuration?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-firewall-configuration)More formats (shields.io, HTML) on the badges page.
---
name: firewall-configuration
description: "Configure ufw iptables firewall rules for common services"
---
# Firewall Configuration
## UFW (Ubuntu)
```bash
sudo ufw default deny incoming
sudo ufw default allow outgoing
sudo ufw allow ssh
sudo ufw allow 80/tcp
sudo ufw allow 443/tcp
sudo ufw enable
sudo ufw status verbose
```
## Common Rules
```bash
sudo ufw allow from 192.168.1.0/24
sudo ufw deny from 10.0.0.1
sudo ufw limit ssh # Rate limit SSH attempts
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!