How can I switch from a custom linux network namespace back to the default one?
- by Martin
With ip netns exec you can execute a command in a custom network namespace - but is there also a way to execute a command in the default namespace?
For example, after executing these two commands:
sudo ip netns add test_ns
sudo ip netns exec test_ns bash
How can the newly created bash execute programs in the default network namespace? There is…