nerdexam
Docker

DCA · Question #135

A users attempts to set the system time from inside a Docker container are unsuccessful. Could this be blocking this operation? Solution: inter-process communication

The correct answer is B. No. Inter-process communication (IPC) isolation focuses on separating communication channels between processes and does not directly block system time modification.

Submitted by jakub_pl· Apr 18, 2026Security

Question

A users attempts to set the system time from inside a Docker container are unsuccessful. Could this be blocking this operation? Solution: inter-process communication

Options

  • AYes
  • BNo

How the community answered

(45 responses)
  • A
    16% (7)
  • B
    84% (38)

Why each option

Inter-process communication (IPC) isolation focuses on separating communication channels between processes and does not directly block system time modification.

AYes

IPC isolation is designed to segregate communication resources between processes, not to control system-level operations such as modifying the host's system clock.

BNoCorrect

Inter-process communication (IPC) namespaces isolate system V IPC objects and POSIX message queues between containers. Blocking operations like setting the system time is not a function of IPC isolation but rather relates to security capabilities or privileged access.

Concept tested: Linux kernel IPC namespaces

Source: https://man7.org/linux/man-pages/man7/namespaces.7.html

Topics

#Container Privileges#Linux Capabilities#Container Isolation#System Operations

Community Discussion

No community discussion yet for this question.

Full DCA Practice