Report this

What is the reason for this report?

Ubuntu doesn't pick up ipv6 config

Posted on January 20, 2018

Hi all,

So I’m trying to setup ipv6 for my droplet following this instruction.

I’ve enabled ipv6 in DO panel after the creation and added following lines to the /etc/networking/interfaces:

# The primary network interface
auto eth0 
iface eth0 inet static
        address Y.Y.Y.Y
        netmask 255.255.224.0
        gateway Y.Y.Y.1
        up ip addr add 10.18.0.5/16 dev eth0
        dns-nameservers 67.207.67.2 67.207.67.3

iface eth0 inet6 static
        address 2a03:XXX:XXX:XXX:XXX:XXX:2001
        netmask 64
        gateway 2a03:XXX:XXX:XXX:XXX:1
        autoconf 0
        dns-nameservers 2001:4860:4860::8844 2001:4860:4860::8888 209.244.0.3

But after reboot system picks up only ipv4 settings and link-local ipv6 address

root@XXX:~# ip -6 a show dev eth0
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 state UP qlen 1000
    inet6 fe80::8080:e2ff:fedb:ae11/64 scope link 
       valid_lft forever preferred_lft forever

At the same time, I can set up ipv6 manually using, say, ip command.

Can you please point what do I missing?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Ubuntu 18.04 has switched to netplan, the current guide hasn’t been updated yet. Follow this steps:

  1. (sudo) vim /etc/netplan/50-cloud-init.yaml
  2. In “addresses” section add
  • your_ipv6_address/64
  1. Below “gateway4:…” section add a new section “gateway6: your_ipv6_gateway”
  2. In “nameservers” -> “addresses” section add
  • 2001:4860:4860::8844
  • 2001:4860:4860::8888
  • 209.244.0.3
  1. (sudo) netplan apply
  2. ping6 2001:4860:4860::8888

That guide is outdated (for ubuntu, still works for debian)

https://wiki.ubuntu.com/Netplan

/etc/netplan/50-cloud-init.yaml

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.