You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to be able to set the mac address of a container to a non-locally administered MAC address, e.g. 00:16:3E:08:00:50. At the moment this is forbidden:
$ docker version
Client version: 1.4.1
Client API version: 1.16
Go version (client): go1.3.3
Git commit (client): 5bc2ff8
OS/Arch (client): linux/amd64
Server version: 1.4.1
Server API version: 1.16
Go version (server): go1.3.3
Git commit (server): 5bc2ff8
$ docker run --mac-address=00:16:3E:08:00:50 ubuntu ifconfig
setup networking set eth0 mac Incorrect Local MAC Address specified: 00:16:3e:08:00:50FATA[0000] Error response from daemon: Cannot start container 307befaecce951ff7663353b1e5d8e5a16a37119c3a71d613ade623f617915fa: setup networking set eth0 mac Incorrect Local MAC Address specified: 00:16:3e:08:00:50
I would like to be able to set the mac address of a container to a non-locally administered MAC address, e.g. 00:16:3E:08:00:50. At the moment this is forbidden:
The check is done at https://github.com/docker/docker/blob/master/vendor/src/github.com/docker/libcontainer/netlink/netlink_linux.go#L528.
Is there any technical reason for that check? wouldn't a warning be enough?
The text was updated successfully, but these errors were encountered: