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
Certain software licenses may require a fixed MAC address in the container. Docker
By default all docker containers have this feature. Moreover, you can manually specify the address using the --mac-address flag. Podman
By default rootless podman selects a random MAC address for the container. When running as root, podman can also specify the MAC address of the container so long as you specify the network namespace. sudo podman run --net podman --mac-address='X:X:X...' IMAGE COMMAND
For rootless podman alternative is to use the --network='host' flag which causes the host and container MAC address to match. This provides a consistent MAC address of license purposes.
The text was updated successfully, but these errors were encountered:
Certain software licenses may require a fixed MAC address in the container.
Docker
By default all docker containers have this feature. Moreover, you can manually specify the address using the --mac-address flag.
Podman
By default rootless podman selects a random MAC address for the container. When running as root, podman can also specify the MAC address of the container so long as you specify the network namespace.
sudo podman run --net podman --mac-address='X:X:X...' IMAGE COMMAND
For rootless podman alternative is to use the --network='host' flag which causes the host and container MAC address to match. This provides a consistent MAC address of license purposes.
The text was updated successfully, but these errors were encountered: