<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet title="XSL formatting" type="text/xsl" href="https://uname.pingveno.net/blog/index.php/feed/rss2/xslt" ?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title># uname -a - Mot-clé - dedibox</title>
    <link>https://uname.pingveno.net/blog/index.php/</link>
    <atom:link href="https://uname.pingveno.net/blog/index.php/feed/tag/dedibox/rss2" rel="self" type="application/rss+xml" />
    <description>Le blog de uname.pingveno.net</description>
    <language>fr</language>
    <pubDate>Wed, 01 Apr 2026 16:19:15 +0200</pubDate>
    <copyright>Mathieu Pellegrin</copyright>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <generator>Dotclear</generator>
          <item>
        <title>Configurer dibbler-client pour IPv6 sur une Dedibox (Online.net) avec Debian 8 (Jessie)</title>
        <link>https://uname.pingveno.net/blog/index.php/post/2015/10/21/Configurer-dibbler-client-pour-IPv6-sur-une-Dedibox-%28Online.net%29-avec-Debian-8-%28Jessie%29</link>
        <guid isPermaLink="false">urn:md5:68ab8bab67fba7928f19774250094c5e</guid>
        <pubDate>Wed, 21 Oct 2015 14:24:00 +0200</pubDate>
        <dc:creator>Mathieu</dc:creator>
                  <category>Hacks</category>
                          <category>debian</category>
                  <category>dedibox</category>
                  <category>dibbler</category>
                  <category>jessie</category>
                  <category>online</category>
                  <category>proxmox</category>
                  <category>server</category>
                <description>          &lt;p&gt;La documentation d&amp;#8217;Online pour IPv6 ne traite pas le cas de Debian, Ubuntu, ou toute distribution utilisant systemd (CentOS6, etc). La documention doit être étendue pour ajouter le service sysetmd au démarrage, en lieu et place de l&amp;#8217;init script.&lt;/p&gt;&lt;h3&gt;Vérifiez que l&amp;#8217;IPv6 est activé&lt;/h3&gt;&lt;p&gt;Cela devrait normalement être le cas, puisque le noyau par défaut de Debian 8 inclut nativement IPv6 et ne peut pas être désactivé. Mais au cas où vous ne verriez pas le link-local sur vos interfaces&amp;#160;:&lt;/p&gt;&lt;p&gt;Changer dans &lt;code&gt;/etc/modprobe.d/local.conf :&lt;/code&gt;&lt;/p&gt;&lt;pre&gt;options ipv6 disable=0&lt;/pre&gt;&lt;p&gt;Ajouter dans &lt;code&gt;/etc/modules :&lt;/code&gt;&lt;/p&gt;&lt;pre&gt;ipv6&lt;/pre&gt;&lt;p&gt;Il faudra sans doute redémarrer pour appliquer les changments.&lt;/p&gt;&lt;h3&gt;Récupérez votre préfixe et votre DUID depuis la console d&amp;#8217;Online&lt;/h3&gt;&lt;p&gt;Vous devez &lt;a href=&quot;https://console.online.net/fr/assistance/ticket/list&quot;&gt;demander l&amp;#8217;activation de IPv6 au support&lt;/a&gt; et créer votre /64&amp;#160;&lt;a href=&quot;https://console.online.net/fr/network/&quot;&gt;dans la console d&amp;#8217;Online&lt;/a&gt; pour obtenir votre DUID.&lt;/p&gt;&lt;p&gt;Créez un /64 et n&amp;#8217;utilisez pas le /48 ou le 56 directement, vous pourriez le regretter si vous souhaitez redécouper le réseau. Vous n&amp;#8217;avez qu&amp;#8217;un seul /48 par compte, un /56 pour chaque serveur, et un /64 pour chaque failover souscrit.&lt;/p&gt;&lt;h3&gt;Configurez l&amp;#8217;interface réseau&lt;/h3&gt;&lt;p&gt;Encore une fois, c&amp;#8217;est sans doute facultatif puisque Dibbler reconfigure l&amp;#8217;interface lorsqu&amp;#8217;il se lance, donc explicitons ça dans le fichier &lt;strong&gt;/etc/network/interfaces&lt;/strong&gt;, juste au cas où&amp;#160;:&lt;/p&gt;&lt;pre&gt;iface eth0 inet6 static
    address your_ipv6_address
    netmask 64
&amp;nbsp;&amp;nbsp; &amp;nbsp;accept_ra 2
&lt;/pre&gt;&lt;h3&gt;Notes sur Proxmox et le forwarding&lt;/h3&gt;&lt;p&gt;Sous Proxmox on travaille sur l&amp;#8217;interface bridge, c&amp;#8217;est &lt;strong&gt;vmbr0&lt;/strong&gt; et non pas eth0.&lt;/p&gt;&lt;p&gt;Si le forwarding est activé, vous devez forcer le &lt;strong&gt;accept_ra&lt;/strong&gt; à &lt;strong&gt;2&lt;/strong&gt;, une valeur de 1 fera ignorer les router advertisements lorsque le forwarding est activé. &lt;a href=&quot;http://www.mattb.net.nz/blog/2011/05/12/linux-ignores-ipv6-router-advertisements-when-forwarding-is-enabled/&quot;&gt;Explications&lt;/a&gt;. Ajoutez dans sysctl.conf&amp;#160;:&lt;/p&gt;&lt;pre&gt;net.ipv6.conf.vmbr0.accept_ra = 2&lt;/pre&gt;&lt;p&gt;Notez bien que dans le cas où vous adressez vos machines virtuelles en IPv6 vous ne &lt;strong&gt;devez pas brancher l&amp;#8217;interface IPv6 de vos VM directement sur l&amp;#8217;interface vmbr0&lt;/strong&gt;. &lt;a href=&quot;https://forum.online.net/index.php?/topic/5380-configuring-ipv6-in-proxmox-on-dedibox-from-onlinenet/&quot;&gt;Voilà pourquoi&lt;/a&gt;.&lt;/p&gt;&lt;h3&gt;Compilez et installez Dibbler&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;Téléchargez &lt;a href=&quot;http://klub.com.pl/dhcpv6/dibbler/dibbler-1.0.1.tar.gz&quot;&gt;Dibbler 1.0.1&lt;/a&gt; à partir du &lt;a href=&quot;http://klub.com.pl/dhcpv6/#DOWNLOAD&quot;&gt;site officiel&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Installez build-essential&amp;#160;: &lt;code&gt;apt-get install build-essential&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Décompressez Dibbler&amp;#160;: &lt;code&gt;tar -xzf dibbler-1.0.1.tar.gz &amp;amp;&amp;amp; cd dibbler-1.0.1&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Compilez et installez Dibbler&amp;#160;: &lt;code&gt;./configure &amp;amp;&amp;amp; ./make&lt;/code&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Configurez Dibbler&lt;/h3&gt;&lt;p&gt;Créez les dossiers et fichiers de configuration comme le précise la documentation&amp;#160;:&lt;/p&gt;&lt;p&gt;Configurez le DUID dans &lt;strong&gt;/var/lib/dibbler/client-duid&lt;/strong&gt;&amp;#160;:&lt;/p&gt;&lt;pre&gt;mkdir /var/lib/dibbler/
touch /var/lib/dibbler/client-duid
chmod 640 /var/lib/client-duid
# Set up you duid in client-duid
vim /var/lib/client-duid
&lt;/pre&gt;&lt;p&gt;Configurez &lt;strong&gt;/etc/dibbler/client.conf&lt;/strong&gt;&amp;#160;:&lt;/p&gt;&lt;pre&gt;mkdir /etc/dibbler
vim /etc/dibbler/client.conf&lt;/pre&gt;&lt;p&gt;Voici le contenu de mon &lt;strong&gt;client.conf&lt;/strong&gt;&amp;#160;:&lt;/p&gt;&lt;pre&gt;auth-protocol reconfigure-key
auth-replay monotonic
auth-methods digest-hmac-md5
duid-type duid-ll
inactive-mode
log-level 8
iface eth0 {
    pd
    ia
}
&lt;/pre&gt;&lt;p&gt;Encore une fois, c&amp;#8217;est à adapter en fonction du nom de votre interface.&lt;/p&gt;&lt;p&gt;Démarrez le client pour tester la connectivité&amp;#160;:&lt;/p&gt;&lt;pre&gt;dibbler-client run&lt;/pre&gt;&lt;p&gt;Pour vérifier que Dibbler a configuré l&amp;#8217;interface, pressez CTRL+Z pour suspendre le processus et vérifiez que l&amp;#8217;IP et les routes sont bien configurées. Tapez la commande &amp;#8220;fg&amp;#8221; pour retourner au processus en cours d&amp;#8217;exécution, et tapez CTRL+C pour stopper Dibbler.&lt;/p&gt;&lt;p&gt;Si pendant l&amp;#8217;opération les routes et les IPs sont incorrectes, vérifiez que votre pare feu accepte les connexions entrantes par le port 546 UDP.&lt;/p&gt;&lt;h3&gt;Configurez Dibbler au démarrage&lt;/h3&gt;&lt;p&gt;Cette section est différente de la documentation d&amp;#8217;Online.&lt;/p&gt;&lt;p&gt;Avant systemd, le système d&amp;#8217;init par dépendances se contentait d&amp;#8217;un script dans /etc/init.d/. Avec systemd, il faut créer un fichier &lt;strong&gt;service&lt;/strong&gt; dans &lt;strong&gt;/etc/systemd/system/&lt;/strong&gt; .&lt;/p&gt;&lt;p&gt;Créez le fichier suivant&amp;#160;: &lt;strong&gt;/etc/systemd/system/dibbler.service&lt;/strong&gt;&amp;#160;:&lt;/p&gt;&lt;pre&gt;[Unit]
Description=Dibbler
After=network.target

[Service]
Type=simple
ExecStart=/usr/local/sbin/dibbler-client start
ExecStop=/usr/local/sbin/dibbler-client stop
PrivateTmp=true
NonBlocking=yes

[Install]
WantedBy=multi-user.target&lt;/pre&gt;&lt;p&gt;Lancez la commande suivante pour que systemd lise le fichier&amp;nbsp;&amp;#160;:&lt;/p&gt;&lt;pre&gt;systemctl daemon-reload&lt;/pre&gt;&lt;p&gt;Et activez le service&amp;#160;:&lt;/p&gt;&lt;pre&gt;systemctl enable dibbler.service&lt;/pre&gt;&lt;p&gt;Et essayez de le lancer pour la première fois&amp;#160;:&lt;/p&gt;&lt;pre&gt;systemctl start dibbler.service&lt;/pre&gt;&lt;p&gt;Vérifions que tout est correct&amp;#160;:&lt;/p&gt;&lt;pre&gt;service dibbler status
ifconfig
route -6
ping6 whatever-you-want.com&lt;/pre&gt;&lt;p&gt;Si tout va bien, redémarrez et l&amp;#8217;IPv6 fonctionnera dès le démarrage&amp;#160;! &lt;img src=&quot;/blog/themes/mathedit_material3/smilies/smile.png&quot; alt=&quot;:)&quot; class=&quot;smiley&quot;&gt;&lt;/p&gt;&lt;p&gt;Addendum&amp;#160;: juste au cas où, n&amp;#8217;utilisez pas resolvconf pour pousser les DNS IPv6 automatiquement, conservez autant que possible vos DNS IPv4. Ça serait tellement dommage que votre connectivité IPv6 saute et que vous vous retrouviez sans DNS (oui ça m&amp;#8217;est arrivé&amp;#8230;).&lt;/p&gt;&lt;h3&gt;Sources&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://documentation.online.net/en/serveur-dedie/reseau/ipv6-prefix&quot;&gt;http://documentation.online.net/en/serveur-dedie/reseau/ipv6-prefix&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.lowendtalk.com/discussion/48591/configuring-ipv6-for-proxmox-kvm-on-dedibox-online-net&quot;&gt;http://www.lowendtalk.com/discussion/48591/configuring-ipv6-for-proxmox-kvm-on-dedibox-online-net&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://unix.stackexchange.com/questions/47695/how-to-write-startup-script-for-systemd&quot;&gt;http://unix.stackexchange.com/questions/47695/how-to-write-startup-script-for-systemd&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://sulek.fr/index.php?article60/configuration-ipv6-pour-une-dedibox-sous-centos-7&quot;&gt;https://sulek.fr/index.php?article60/configuration-ipv6-pour-une-dedibox-sous-centos-7&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.mattb.net.nz/blog/2011/05/12/linux-ignores-ipv6-router-advertisements-when-forwarding-is-enabled/&quot;&gt;http://www.mattb.net.nz/blog/2011/05/12/linux-ignores-ipv6-router-advertisements-when-forwarding-is-enabled/&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://forum.online.net/index.php?/topic/5380-configuring-ipv6-in-proxmox-on-dedibox-from-onlinenet/&quot;&gt;https://forum.online.net/index.php?/topic/5380-configuring-ipv6-in-proxmox-on-dedibox-from-onlinenet/&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</description>
        
              </item>
          <item>
        <title>Configure dibbler-client for IPV6 networking on Dedibox (or any Online.net) servers with Debian 8 (Jessie)</title>
        <link>https://uname.pingveno.net/blog/index.php/post/2015/10/21/Configure-dibbler-for-IPV6-networking-on-Dedibox-%28or-any-Online.net%29-servers-with-Debian-8-%28Jessie%29</link>
        <guid isPermaLink="false">urn:md5:cf27b5e56650bb4963d6a1f71966a199</guid>
        <pubDate>Wed, 21 Oct 2015 12:50:00 +0200</pubDate>
        <dc:creator>Mathieu</dc:creator>
                  <category>Hacks</category>
                          <category>debian</category>
                  <category>dedibox</category>
                  <category>dibbler</category>
                  <category>jessie</category>
                  <category>online</category>
                  <category>proxmox</category>
                  <category>server</category>
                <description>          &lt;p&gt;The &lt;a href=&quot;http://documentation.online.net/en/serveur-dedie/reseau/ipv6-prefix&quot;&gt;Online documentation for IPv6&lt;/a&gt; is not dealing with the case of Debian 8, Ubuntu, or any distribution using systemd. Systemd replaces upstart, so the procedure has to be extended to add systemd service for startup, replacing the previoux behavior that was using init scripts.&lt;/p&gt;&lt;h3&gt;Ensure that you are IPv6-proof&lt;/h3&gt;&lt;p&gt;It should be the case as Debian 8 is shipping a kernel with native IPv6, but just to be sure&amp;#160;:&lt;/p&gt;&lt;p&gt;In &lt;code&gt;/etc/modprobe.d/local.conf :&lt;/code&gt;&lt;/p&gt;&lt;pre&gt;options ipv6 disable=0&lt;/pre&gt;&lt;p&gt;In &lt;code&gt;/etc/modules :&lt;/code&gt;&lt;/p&gt;&lt;pre&gt;ipv6&lt;/pre&gt;&lt;p&gt;You may have to reboot in order to apply the changes.&lt;/p&gt;&lt;h3&gt;Set up your IPv6 prefix and get your DUID on Online console&lt;/h3&gt;&lt;p&gt;You have to &lt;a href=&quot;https://console.online.net/fr/assistance/ticket/list&quot;&gt;request IPv6 activation to support&lt;/a&gt; and create your /64&amp;#160;&lt;a href=&quot;https://console.online.net/fr/network/&quot;&gt;on Online console&lt;/a&gt; before getting your DUID working.&lt;/p&gt;&lt;p&gt;Make a /64 and do not use your /48 or your /56 directly, as you may regret it. You can have only one /48 by account, one /56 by server, and one /64 by IP failover (the /48 is divided to make the /56 and so on).&lt;/p&gt;&lt;h3&gt;Configure your network interface&lt;/h3&gt;&lt;p&gt;It may not be mandatory as Dibbler will reconfigure your interface, but you have to ensure that you accept router advertisements. Add to &lt;strong&gt;/etc/network/interfaces&lt;/strong&gt;&amp;#160;:&lt;/p&gt;&lt;pre&gt;iface eth0 inet6 static
    address your_ipv6_address
    netmask 64
&amp;nbsp;&amp;nbsp; &amp;nbsp;accept_ra 2
&lt;/pre&gt;&lt;h3&gt;Notes about Proxmox and forwarding&lt;/h3&gt;&lt;p&gt;On Proxmox, you are working on the bridge interface, it should be &lt;strong&gt;vmbr0&lt;/strong&gt; instead of eth0.&lt;/p&gt;&lt;p&gt;If you enabled forwarding on this interface (to give your VM an access to IPv6 network), you have to force the &lt;strong&gt;accept_ra&lt;/strong&gt; to &lt;strong&gt;2&lt;/strong&gt;, while the default value of 1 wil make your Debian to ignore router advertisements when forwarding is enabled&amp;#160;! &lt;a href=&quot;http://www.mattb.net.nz/blog/2011/05/12/linux-ignores-ipv6-router-advertisements-when-forwarding-is-enabled/&quot;&gt;Read more&lt;/a&gt;. Add to sysctl.conf&amp;#160;:&lt;/p&gt;&lt;pre&gt;net.ipv6.conf.vmbr0.accept_ra = 2&lt;/pre&gt;&lt;p&gt;Also &lt;strong&gt;do not set the IPv6 interface of your VM to vmbr0&lt;/strong&gt;, as you can break your network access. &lt;a href=&quot;https://forum.online.net/index.php?/topic/5380-configuring-ipv6-in-proxmox-on-dedibox-from-onlinenet/&quot;&gt;Read more&lt;/a&gt;.&lt;/p&gt;&lt;h3&gt;Compile and install Dibbler&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;Download &lt;a href=&quot;http://klub.com.pl/dhcpv6/dibbler/dibbler-1.0.1.tar.gz&quot;&gt;Dibbler 1.0.1&lt;/a&gt; from the &lt;a href=&quot;http://klub.com.pl/dhcpv6/#DOWNLOAD&quot;&gt;offical website&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;Install build-essential&amp;#160;: &lt;code&gt;apt-get install build-essential&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Extract Dibbler&amp;#160;: &lt;code&gt;tar -xzf dibbler-1.0.1.tar.gz &amp;amp;&amp;amp; cd dibbler-1.0.1&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Compile and install Dibbler&amp;#160;: &lt;code&gt;./configure &amp;amp;&amp;amp; ./make&lt;/code&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Configure Dibbler&lt;/h3&gt;&lt;p&gt;Make the directories and set up according to the documentation&amp;#160;:&lt;/p&gt;&lt;p&gt;Set up duid&amp;#160;:&lt;/p&gt;&lt;pre&gt;mkdir /var/lib/dibbler/
touch /var/lib/dibbler/client-duid
chmod 640 /var/lib/client-duid
# Set up you duid in client-duid
vim /var/lib/client-duid
&lt;/pre&gt;&lt;p&gt;Set up client.conf&amp;#160;:&lt;/p&gt;&lt;pre&gt;mkdir /etc/dibbler
vim /etc/dibbler/client.conf&lt;/pre&gt;&lt;p&gt;The content of my client.conf&amp;#160;:&lt;/p&gt;&lt;pre&gt;auth-protocol reconfigure-key
auth-replay monotonic
auth-methods digest-hmac-md5
duid-type duid-ll
inactive-mode
log-level 8
iface eth0 {
    pd
    ia
}
&lt;/pre&gt;&lt;p&gt;Note that if your interface name is different you have to change it accordingly. For instance, on a Proxmox host server, it should be &lt;strong&gt;vmbr0&lt;/strong&gt; instead of eth0.&lt;/p&gt;&lt;p&gt;Start dibbler to try the connectivity&amp;#160;:&lt;/p&gt;&lt;pre&gt;dibbler-client run&lt;/pre&gt;&lt;p&gt;Hit CTRL+Z to suspend the process and check that the IP and routes are configured. Type the command &amp;#8220;fg&amp;#8221; to get back to the running process and hit CTRL+C to stop it.&lt;/p&gt;&lt;p&gt;If it doesn&amp;#8217;t work, check your firewall, dibbler needs to listen port 546 UDP.&lt;/p&gt;&lt;h3&gt;Set Dibbler at startup&lt;/h3&gt;&lt;p&gt;This section differs from Online documentation.&lt;/p&gt;&lt;p&gt;Before systemd, the dependency-based boot sequence only needed an init script, for instance /etc/init.d/dibbler . With systemd, you have to make a &lt;strong&gt;service&lt;/strong&gt; file in &lt;strong&gt;/etc/systemd/system/&lt;/strong&gt; .&lt;/p&gt;&lt;p&gt;Make the following file&amp;#160;: &lt;strong&gt;/etc/systemd/system/dibbler.service&lt;/strong&gt;&amp;#160;:&lt;/p&gt;&lt;pre&gt;[Unit]
Description=Dibbler
After=network.target

[Service]
Type=simple
ExecStart=/usr/local/sbin/dibbler-client start
ExecStop=/usr/local/sbin/dibbler-client stop
PrivateTmp=true
NonBlocking=yes

[Install]
WantedBy=multi-user.target&lt;/pre&gt;&lt;p&gt;Run the following command to make systemd read file&amp;#160;:&lt;/p&gt;&lt;pre&gt;systemctl daemon-reload&lt;/pre&gt;&lt;p&gt;Enable the service&amp;#160;:&lt;/p&gt;&lt;pre&gt;systemctl enable dibbler.service&lt;/pre&gt;&lt;p&gt;And then, try to start it&amp;#160;:&lt;/p&gt;&lt;pre&gt;systemctl start dibbler.service&lt;/pre&gt;&lt;p&gt;Check everything is fine&amp;#160;:&lt;/p&gt;&lt;pre&gt;service dibbler status
ifconfig
route -6
ping6 whatever-you-want.com&lt;/pre&gt;&lt;p&gt;Reboot and the IPv6 networking should work at startup&amp;#160;! &lt;img src=&quot;/blog/themes/mathedit_material3/smilies/smile.png&quot; alt=&quot;:)&quot; class=&quot;smiley&quot;&gt;&lt;/p&gt;&lt;p&gt;Addendum&amp;#160;: just in case, don&amp;#8217;t use resolvconf with IPv6 DNS pushing and if possible keep IPv4 DNS, it would be such a pity if the IPv6 networking crashes while your DNS servers are set to IPv6 addresses (yeah, it happened to to me)&amp;#8230;&lt;/p&gt;&lt;h3&gt;Sources&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://documentation.online.net/en/serveur-dedie/reseau/ipv6-prefix&quot;&gt;http://documentation.online.net/en/serveur-dedie/reseau/ipv6-prefix&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.lowendtalk.com/discussion/48591/configuring-ipv6-for-proxmox-kvm-on-dedibox-online-net&quot;&gt;http://www.lowendtalk.com/discussion/48591/configuring-ipv6-for-proxmox-kvm-on-dedibox-online-net&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://unix.stackexchange.com/questions/47695/how-to-write-startup-script-for-systemd&quot;&gt;http://unix.stackexchange.com/questions/47695/how-to-write-startup-script-for-systemd&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://sulek.fr/index.php?article60/configuration-ipv6-pour-une-dedibox-sous-centos-7&quot;&gt;https://sulek.fr/index.php?article60/configuration-ipv6-pour-une-dedibox-sous-centos-7&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.mattb.net.nz/blog/2011/05/12/linux-ignores-ipv6-router-advertisements-when-forwarding-is-enabled/&quot;&gt;http://www.mattb.net.nz/blog/2011/05/12/linux-ignores-ipv6-router-advertisements-when-forwarding-is-enabled/&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://forum.online.net/index.php?/topic/5380-configuring-ipv6-in-proxmox-on-dedibox-from-onlinenet/&quot;&gt;https://forum.online.net/index.php?/topic/5380-configuring-ipv6-in-proxmox-on-dedibox-from-onlinenet/&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</description>
        
              </item>
      </channel>
</rss>
