diff --git a/input/grid5000/ipv6.yaml b/input/grid5000/ipv6.yaml index d5e99e79207cae711aa7b0ac8f269c064c63da27..3cca36ab67052bbb5d35fe4d6de77079883653a8 100644 --- a/input/grid5000/ipv6.yaml +++ b/input/grid5000/ipv6.yaml @@ -10,3 +10,12 @@ ipv6: nantes: 6 rennes: 7 sophia: 8 + site_global_kavlans: + grenoble: 11 + lille: 12 + luxembourg: 20 + lyon: 13 + nancy: 14 + nantes: 21 + rennes: 16 + sophia: 18 diff --git a/lib/refrepo/input_loader.rb b/lib/refrepo/input_loader.rb index a321413bbd86adbb740a0173c8fb80525318ed34..1e605f21c20ac26835754915d123f3eed743d765 100644 --- a/lib/refrepo/input_loader.rb +++ b/lib/refrepo/input_loader.rb @@ -54,7 +54,10 @@ def load_yaml_file_hierarchy(directory = File.expand_path("../../input/grid5000/ # populate each node with its IPv4 addresses add_ipv4(global_hash) - # populate each node with its kavlan IPv4 IPs + # add some ipv6 informations in sites + add_site_ipv6_infos(global_hash) + + # populate each node with its kavlan IPs add_kavlan_ips(global_hash) add_kavlan_ipv6s(global_hash) @@ -315,3 +318,13 @@ def add_theorical_flops(h) end end end + +def add_site_ipv6_infos(h) + h['sites'].each_pair do |site_uid, hs| + h['sites'][site_uid]['ipv6'] = {} + h['sites'][site_uid]['ipv6']['prefix'] = h['ipv6']['prefix'] + ":%02x" % (h['ipv6']['site_indexes'][site_uid]) + h['sites'][site_uid]['ipv6']['site_index'] = h['ipv6']['site_indexes'][site_uid] + h['sites'][site_uid]['ipv6']['site_global_kavlan'] = h['ipv6']['site_global_kavlans'][site_uid] + end +end +