How to set the MAC address for Docker LXC containe

2019-02-08 05:10发布

Whenever I run a docker container, I see that it uses a random MAC address:

eth0      Link encap:Ethernet  HWaddr de:6f:de:74:bd:d9

How do I set a specific MAC address for a container run?

Will I be able to have multiple containers running simultaneously with the same MAC address? These containers do not need to access the outside network and do not need to talk to each other.

标签: docker lxc
3条回答
该账号已被封号
2楼-- · 2019-02-08 05:31

The above answer worked for me and helped me very much, but I needed a little more detail to get it to work. This is very helpful when you have an app that licenses of the mac-address. As this was the only post I could find on this topic, I thought I expand on it.

For me, it required a little more to work - else the switch will be silently discarded. For ubuntu 12.04:

  1. edit /etc/default/docker: DOCKER_OPTS="--dns 8.8.8.8 -e lxc"
  2. apt-get install lxc (lxc-docker is not enough)
  3. docker run --lxc-conf="lxc.network.hwaddr=92:20:de:b0:6b:61" -t myimage
查看更多
SAY GOODBYE
3楼-- · 2019-02-08 05:40

Newer versions of docker take a --mac-address=12:34:56:78:9a:bc switch to docker run.

root@kevin-VirtualBox:~# sudo docker run --rm --mac-address"=12:34:de:b0:6b:61" ubuntu ifconfig | grep HWaddr
eth0      Link encap:Ethernet  HWaddr 12:34:de:b0:6b:61  

See https://docs.docker.com/reference/run/

查看更多
爷、活的狠高调
4楼-- · 2019-02-08 05:42

The MAC address is set using the LXC configuration option lxc.network.hwaddr. Here is an example of how to set MAC address using Docker 0.6.1:

docker run --lxc-conf="lxc.network.hwaddr=92:20:de:b0:6b:61" my_image ifconfig

In the output, you will see the HWaddr that was set:

eth0      Link encap:Ethernet  HWaddr 92:20:de:b0:6b:61

Update:

The previous switch -lxc-conf (with 1 dash) has been deprecated.

To use the above switch, you docker must be using the LXC driver: -e lxc

查看更多
登录 后发表回答