# Cis Ubuntu1204 V110 7 7

> Ensure Firewall is active

- Skill: `cyberstrikeus/cis-ubuntu1204-v110-7-7` (Agent Skill)
- Install (CLI): `npx skillmds@latest add cyberstrikeus/cis-ubuntu1204-v110-7-7`
- Raw SKILL.md: https://api.skillmd.com/api/skills/cyberstrikeus/cis-ubuntu1204-v110-7-7/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: cyberstrikeus (https://skillmd.com/u/cyberstrikeus)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/cyberstrikeus/cis-ubuntu1204-v110-7-7

---


# 7.7 Ensure Firewall is active (Scored)

## Profile Applicability

- Level 1

## Description

IPtables is an application that allows a system administrator to configure the IPv4 tables, chains and rules provided by the Linux kernel firewall. `ufw` was developed to ease IPtables firewall configuration.

## Rationale

IPtables provides extra protection for the Linux system by limiting communications in and out of the box to specific IPv4 addresses and ports. Ubuntu provides UFW to ease firewall configuration.

## Audit Procedure

### Using Command Line

Ensure `ufw` is active:

```bash
ufw status
```

## Expected Result

```
Status: active
```

## Remediation

### Using Command Line

Activate `ufw`:

```bash
ufw enable
```

Ensure that any needed ports, such as ssh access, are configured properly first.

## Default Value

UFW is inactive by default.

## References

- CIS Ubuntu 12.04 LTS Server Benchmark v1.1.0

## Profile

Level 1 - Scored

