# CIS Ubuntu 14.04 LTS - 2.1.11 Ensure openbsd-inetd is not installed

> Verify that openbsd-inetd package is not installed on the system

- Skill: `cyberstrikeus/cis-ubuntu-14-04-lts-2-1-11-ensure-openbsd-inetd-is-not-inst` (Agent Skill)
- Install (CLI): `npx skillmds@latest add cyberstrikeus/cis-ubuntu-14-04-lts-2-1-11-ensure-openbsd-inetd-is-not-inst`
- Raw SKILL.md: https://api.skillmd.com/api/skills/cyberstrikeus/cis-ubuntu-14-04-lts-2-1-11-ensure-openbsd-inetd-is-not-inst/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-ubuntu-14-04-lts-2-1-11-ensure-openbsd-inetd-is-not-inst

---


# 2.1.11 Ensure openbsd-inetd is not installed (Scored)

## Profile Applicability

- Level 1 - Server
- Level 1 - Workstation

## Description

The `inetd` daemon listens for well known services and dispatches the appropriate daemon to properly respond to service requests.

## Rationale

If there are no `inetd` services required, it is recommended that the daemon be removed.

## Audit Procedure

Run the following command and verify `openbsd-inetd` is not installed:

```bash
dpkg -s openbsd-inetd
```

## Expected Result

The command should indicate that the package is not installed (e.g., `dpkg-query: package 'openbsd-inetd' is not installed`).

## Remediation

Run the following command to uninstall `openbsd-inetd`:

```bash
apt-get remove openbsd-inetd
```

## Default Value

openbsd-inetd is not installed by default on Ubuntu 14.04.

## References

- CIS Controls: 9.1 Limit Open Ports, Protocols, and Services

## Profile

- Level 1 - Server
- Level 1 - Workstation

