diff --git a/input/grid5000/ipv6.yaml b/input/grid5000/ipv6.yaml
index 913b62eab9cec5580c4f14a50caf06a300776ce8..610223ec068d64716f11bdbc8018b4f5ffe063a8 100644
--- a/input/grid5000/ipv6.yaml
+++ b/input/grid5000/ipv6.yaml
@@ -1,5 +1,6 @@
 ---
 ipv6:
+  prefix: '2001:660:4406'
   site-indexes:
     grenoble: 1
     lille: 2
diff --git a/lib/refrepo/input_loader.rb b/lib/refrepo/input_loader.rb
index 6616d8f1db8c6e3579ffda5ed076ef8f2782b937..4da43d7615eaa6666a6e498932c182ce037f49c5 100644
--- a/lib/refrepo/input_loader.rb
+++ b/lib/refrepo/input_loader.rb
@@ -162,7 +162,7 @@ def add_ipv6(h)
           ip4 = ipv6_adapters.values[0]['ip']
           ipv6_adapters.each_with_index do |(_iface, nah), idx|
             # compute and assign IPv6 based on IPv4 of the first adapter
-            ip6 = '2001:660:4406:'
+            ip6 = h['ipv6']['prefix'] + ':'
             ip6 += '%x' % h['ipv6']['site-indexes'][site_uid]
             ip6 += '00:'
             ip6 += '%x' % ((ip4.split('.')[2].to_i & 0b1111) + 1)
@@ -199,7 +199,7 @@ def add_kavlan_ipv6s(h)
             hn['kavlan6'][iface] = {}
             hn['kavlan'][iface].each_key do |kvl|
               kvl_id = kvl.split('-')[1].to_i
-              ip6 = '2001:660:4406:'
+              ip6 = h['ipv6']['prefix'] + ':'
               ip6 += '%x' % h['ipv6']['site-indexes'][site_uid]
               ip6 += '%x:' % (kvl_id + 0x80)
               ip6 += '%x' % ((ip4.split('.')[2].to_i & 0b1111) + 1)