blob: 6a4920cdc4947c1de27bc704aa214b878f7d8480 [file] [log] [blame]
Dmitry Teselkinee7b8112018-08-22 12:46:08 +03001# 3.5.4 Ensure TIPC is disabled
2#
3# Description
4# ===========
5# The Transparent Inter-Process Communication (TIPC) protocol is designed
6# to provide communication between cluster nodes.
7#
8# Rationale
9# =========
10# If the protocol is not being used, it is recommended that kernel module
11# not be loaded, disabling the service to reduce the potential attack surface.
12#
13# Audit
14# =====
15# Run the following commands and verify the output is as indicated:
16#
17# # modprobe -n -v tipc
18# install /bin/true
19# # lsmod | grep tipc
20# <No output>
21#
22# Remediation
23# ===========
24#
25# Edit or create the file /etc/modprobe.d/CIS.conf and add the following line:
26#
27# install tipc /bin/true
28#
29parameters:
30 linux:
31 system:
32 kernel:
33 module:
34 tipc:
35 install:
36 command: /bin/true
37