From: Thierry Parmentelat Date: Tue, 1 Apr 2008 15:26:19 +0000 (+0000) Subject: enable the use of mac address for vnodes X-Git-Tag: tests-4.2-4~115 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=c392b465f67f4cdef90e4f00e84715acac30a9fb;p=tests.git enable the use of mac address for vnodes --- diff --git a/system/config_1vnodes.py b/system/config_1vnodes.py index a516e96..6b1245b 100644 --- a/system/config_1vnodes.py +++ b/system/config_1vnodes.py @@ -4,7 +4,7 @@ from TestMapper import TestMapper from TestPool import TestPool onelab_plcs_pool = [ - ( 'vnode%02d.inria.fr'%i, '138.96.250.22%d'%i, 'ab:cd:ef:00:01:%02d'%i) for i in range(1,10) ] + ( 'vnode%02d.inria.fr'%i, '138.96.250.22%d'%i, '02:08:74:4C:7F:%02d'%i) for i in range(1,10) ] site_dict = { 'network_fields:gateway':'138.96.248.250', 'network_fields:network':'138.96.0.0', @@ -30,8 +30,7 @@ def config (plcs, options): (hostname,ip,mac) = test_pool.next_free() node_dict= {'node_fields:hostname':hostname, 'network_fields:ip':ip, - # xxx do not et mac as for some reason the qeu nodes don't know about their mac any more - #'network_fields:mac':mac, + 'network_fields:mac':mac, } node_dict.update(site_dict)