Inspect sockets in a process netns/mntns namespaces
Enter newest proc's net+mount+pid ns and list listening sockets it actually sees
nsenter -t $(pgrep -n <proc>) -n -m -p ss -tlnp
more namespaces
all 4 commands →
Isolated sandbox with unshare
unshare --net --pid --fork --mount-proc bash # then: ip netns add test; ip netns exec test ip a
Namespaces of a specific PID
lsns -p <pid>; readlink /proc/<pid>/ns/net /proc/1/ns/net # equal inode = same netns
Tcpdump inside a container netns from host
PID=$(docker inspect -f '{{.State.Pid}}' <name>); nsenter -t $PID -n tcpdump -ni any -c 50