From 4d2c7837aa8aedea5819aaf8b08625ea66b825c6 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Mon, 31 Mar 2008 10:23:06 +0000 Subject: [PATCH] Moving to vnode0* in static network configuration,giving up with dhcp config not really useful. --- system/config_onelab.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/system/config_onelab.py b/system/config_onelab.py index 69b3f8c..7ab7795 100644 --- a/system/config_onelab.py +++ b/system/config_onelab.py @@ -9,38 +9,36 @@ onelab="one-lab.org" # host_box is taken as 'localhost' if omitted (should be a direct field in the node spec) def nodes(): - nodes= [{'node_fields': {'hostname': 'lysithea.inria.fr', + nodes= [{'node_fields': {'hostname': 'vnode01.inria.fr', 'model':'qemu/minhw', } , 'host_box': 'testbox1.one-lab.org', 'owner' : 'pi', 'network_fields': { 'method':'static', 'type':'ipv4', - 'ip':'138.96.250.153', + 'ip':'138.96.250.221', 'gateway':'138.96.248.250', 'network':'138.96.0.0', 'broadcast':'138.96.255.255', 'netmask':'255.255.0.0', 'dns1': '138.96.0.10', 'dns2': '138.96.0.11', - 'mac' : '00:0b:cd:62:50:95', }, }, - #{'node_fields': {'hostname': 'pluton.inria.fr', + #{'node_fields': {'hostname': 'vnode02.inria.fr', # 'model':'qemu/minhw', } , # 'host_box': 'testbox1.one-lab.org', # 'owner' : 'pi', # 'network_fields': { 'method':'static', # 'type':'ipv4', - # 'ip':'138.96.250.151', + # 'ip':'138.96.250.222', # 'gateway':'138.96.248.250', # 'network':'138.96.0.0', # 'broadcast':'138.96.255.255', # 'netmask':'255.255.0.0', # 'dns1': '138.96.0.10', # 'dns2': '138.96.0.11', - # 'mac' : '00:08:02:33:4d:9e', # }, - #}, + # }, ] return nodes -- 2.47.0