# Cis Docker 7.9

> Ensure that management plane traffic is separated from data plane traffic

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

---


# 7.9 Ensure that management plane traffic is separated from data plane traffic (Manual)

## Profile Applicability

- Level 1 - Docker Swarm

## Description

You should separate management plane traffic from data plane traffic.

## Rationale

Separating management plane traffic from data plane traffic ensures that these types of traffic are segregated from each other. These traffic flows can then be individually monitored and tied to different traffic control policies and monitoring. This also ensures that the management plane is always reachable even if there is a great deal of traffic on the data plane.

## Impact

This requires two network interfaces per node.

## Audit Procedure

You should run the command below on each swarm node and ensure that the management plane address is not the same as the data plane address.

```
docker node inspect  --format '{{ .Status.Addr }}' self
```

## Remediation

You should initialize the swarm with dedicated interfaces for management and data planes respectively.

For example,

```
docker swarm init --advertise-addr=192.168.0.1 --data-path-addr=17.1.0.3
```

## Default Value

By default, data plane traffic is not separated from management plane traffic.

## References

1. https://docs.docker.com/engine/reference/commandline/swarm_init/#--data-path-addr

## CIS Controls

| Controls Version | Control                                                                                                                                                                                                                                      | IG 1 | IG 2 | IG 3 |
| ---------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---- | ---- | ---- |
| v8               | 12 Network Infrastructure Management<br>Establish, implement, and actively manage (track, report, correct) network devices, in order to prevent attackers from exploiting vulnerable network services and access points.                     |      |      |      |
| v7               | 14.1 Segment the Network Based on Sensitivity<br>Segment the network based on the label or classification level of the information stored on the servers, locate all sensitive information on separated Virtual Local Area Networks (VLANs). |      | ●    | ●    |

