If the beaker.base_mac_addr config setting is changed, and the new value is higher than the previous one (or higher than the default value if it was absent), MAC addresses will continue to be allocated in the old range so long as there is at least one guest recipe running. (And in a large Beaker installation, there will probably always be at least one guest recipe running.) The MAC address assignments will gradually increase to converge on the new base address, due to the query used for finding unused MAC addresses. This is a problem because it defeats the purpose of MAC address re-use, which is to avoid exhausting the lab DHCP pool. The base address needs to be enforced as a hard minimum in the query.
http://gerrit.beaker-project.org/1728
Verified with beaker-0.11.3-1.git.210.bda2c22. steps: 1. Create a job which can be scheduled on RHEV guests. 2. Wait for the job go to "running" which means there is a guest created 3. Change the beaker.base_mac_addr to "52:55:00:00:00:00" (or any value larger than the default/previous one), restart httpd and beakerd 4. Create a new job which also can be scheduled on RHEV guests (or just clone the job in step 1) 5. Wait for the job go to "running", check the mac addr allocated to the new guest. It's value should be larger than the one changed at step 3.
Beaker 0.12 has been released.