With IPv4, I can add two DNS Name Servers without any problem, like this:
"dns-nameservers 8.8.4.4 8.8.8.8"
Then on my resolv.conf I got:
nameserver 8.8.4.4
nameserver 8.8.8.8
BUT, it does not work for IPv6, only the first IPv6 DNS Server appear at my resolv.conf, look:
"dns-nameservers 2001:4860:4860::8844 2001:4860:4860::8888"
But then, my resolv.conf remain only with the first one:
nameserver 2001:4860:4860::8844
Apparently, Ubuntu (resolvconf / ifupdown) is ignoring the second DNS Name Server, so, how to fix it?!
Here is my /etc/network/interfaces file:
auto lo
iface lo inet loopback
iface lo inet6 loopback
auto eth0
iface eth0 inet6 static
address 2800:210:0:4::2
netmask 64
gateway 2800:210:0:4::1
dns-nameservers 2001:4860:4860::8844 2001:4860:4860::8888