Adding a new NIC to a Docker container in a specific order

Dead adrics,

First of all, thank you for your detailed instructions, it helped me a lot when I was playing with multiple interfaces in docker.
Secondly, I don’t know whether you still wait for any response on this thread, but I summarized below what I ended up after some workarounds.

Solution 1:
Just right after your solution, if you only need a different MAC address, just change the corresponding device’s MAC address in the container by some basic tools, say, ifconfig. If you don’t have it in your container, just install net-tools package.
To change the mac use this: ifconfig eth1 hw ether 08:00:AA:AA:AA:FF

Solution 2:
Since docker is also using linux’s networking namespaces you can do this in the rock-bottom layer as well. Unfortunately, Docker tries to hide this from the user, but the namespaces are still existing under the hood. In order to get them to be managed by ip netns tool, do the following:

  1. get the process id (pid) of your running container:
    $ sudo docker inspect -f '{{.State.Pid}}' <container name>
    is not your label:tag name, it is the name that docker automatically assign to it once a container is fired up - get yours viadocker ps command and look for the last column (NAME).
  2. create a symlink from the /proc/ filesystem to /var/run/
    2.1. First, create a netns directory in /var/run/
    $ sudo mkdir -p /var/run/netns
    2.2. Using the PID you have just obtained, create the symlink
    $ sudo ln -sf /proc/<PID>/ns/net /var/run/netns/<YOUR DESIRED NETNS NAME FOR YOU CONTAINER>
    Now, if you execute ip netns list, you will see the networking namespace of your container.
  3. From now on, there is no docker specific stuffs, just create a veth pair, bring them up, and attach one end of it to the container and you are fine:
    $ sudo ip link add veth1_container type veth peer name veth1_root
    $ sudo ifconfig veth1_container up
    $ sudo ifconfig veth1_root up
    $ sudo ip link set veth1_container netns <YOUR NETNS NAME>
    $ sudo ip netns exec <YOUR NETNS NAME> ifconfig veth1_container up

The last command might be a bit overcomplicated, but it seemed that bringing up this interface natively in the container is not possible due to missing permissions :face_with_raised_eyebrow:

Note that the MAC address could also be changed in the same way I have shown in solution 1, before attaching it to the container, or after - does not really matter, just different commands need to be used (recall the permission issue just mentioned above).

I hope it helps.
Cheers,
cs.lev