Project

General

Profile

Actions

Task #5345

open

Add or document methodology for natively creating sockets in node network namespaces

Added by Alexander Lane 2 months ago. Updated about 2 months ago.

Status:
New
Priority:
Low
Assignee:
-
Category:
-
Target version:
-
Start date:
01/31/2025
Due date:
% Done:

0%

Estimated time:

Description

There is currently no obvious method of creating Python sockets native to a node's network namespace from the main application; either it does not exist or is extremely poorly documented. This leads to awkward coding patterns and is one of the most obvious blockers for the usage of Python-NDN applications on nodes without needing to manage additional processes. We either need to document and potentially add helper methods for this if the functionality exists already, or otherwise attempt to implement this. For the latter, we should likely try and merge this to Mininet directly.

Actions #1

Updated by Junxiao Shi about 2 months ago

Mininet's interaction with network namespaces is through mnexec.c.
It supports starting a new process in a new/existing network namespace, but does not directly support passing back a network namespace.

You could use it to invoke a program that creates a socket of requested type in the target netns and then pass it back via Unix socket ancillary data.
ns-3 has a pair of sender and receiver for your reference.

Actions

Also available in: Atom PDF